aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkey.c
diff options
context:
space:
mode:
authoremboss <emboss@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-19 01:15:35 +0000
committeremboss <emboss@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-19 01:15:35 +0000
commitc35204f7bdd821feb2d73782e3a56a3c822d6150 (patch)
tree02b38d4722fac463a865cb48c849e26735d5be4c /ext/openssl/ossl_pkey.c
parent12c497dcf68ea7e1f75b2ba100e09b9f133eafe2 (diff)
downloadruby-c35204f7bdd821feb2d73782e3a56a3c822d6150.tar.gz
* ext/openssl/ossl_ssl.c: Remove set, but unused variables.
ext/openssl/ossl_pkey.c: ditto * ext/openssl/ossl_pkey_dh.c: Make functions passed to rb_thread_blocking_region return VALUE instead of void. ext/openssl/ossl_pkey_dsa.c: ditto ext/openssl/ossl_pkey_rsa.c: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_pkey.c')
-rw-r--r--ext/openssl/ossl_pkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/ossl_pkey.c b/ext/openssl/ossl_pkey.c
index e07e659319..cb0c320a0c 100644
--- a/ext/openssl/ossl_pkey.c
+++ b/ext/openssl/ossl_pkey.c
@@ -38,7 +38,7 @@ ossl_generate_cb(int p, int n, void *arg)
int
ossl_generate_cb_2(int p, int n, BN_GENCB *cb)
{
- VALUE ary, ret;
+ VALUE ary;
struct ossl_generate_cb_arg *arg;
int state;
@@ -51,7 +51,7 @@ ossl_generate_cb_2(int p, int n, BN_GENCB *cb)
/*
* can be break by raising exception or 'break'
*/
- ret = rb_protect(rb_yield, ary, &state);
+ rb_protect(rb_yield, ary, &state);
if (state) {
arg->stop = 1;
arg->state = state;