6a15ee56b6
Since many changes from previous release, please refer http://www.ruby-lang.org/en/news/2010/08/16/ruby-1-8-7-p302-is-released/. Note: Since all security updates are already in previous package, This update dosen't include any securify fix.
24 lines
731 B
Text
24 lines
731 B
Text
$NetBSD: patch-el,v 1.1 2010/09/10 03:29:01 taca Exp $
|
|
|
|
* r18172: suppress warnings.
|
|
|
|
--- ext/openssl/ossl_rand.c.orig 2008-05-29 18:15:50.000000000 +0000
|
|
+++ ext/openssl/ossl_rand.c
|
|
@@ -99,7 +99,7 @@ ossl_rand_bytes(VALUE self, VALUE len)
|
|
int n = NUM2INT(len);
|
|
|
|
str = rb_str_new(0, n);
|
|
- if (!RAND_bytes(RSTRING_PTR(str), n)) {
|
|
+ if (!RAND_bytes((unsigned char *)RSTRING_PTR(str), n)) {
|
|
ossl_raise(eRandomError, NULL);
|
|
}
|
|
|
|
@@ -118,7 +118,7 @@ ossl_rand_pseudo_bytes(VALUE self, VALUE
|
|
int n = NUM2INT(len);
|
|
|
|
str = rb_str_new(0, n);
|
|
- if (!RAND_pseudo_bytes(RSTRING_PTR(str), n)) {
|
|
+ if (!RAND_pseudo_bytes((unsigned char *)RSTRING_PTR(str), n)) {
|
|
ossl_raise(eRandomError, NULL);
|
|
}
|
|
|