openssl: Avoid reference to unset global variable in Init_openssl()
* ext/openssl/ossl.c (Init_openssl): Avoid reference to unset global variable. ossl_raise() may be called before dOSSL is set. Since global variables default to 0 and the default value of dOSSL set in Init_openssl() is also Qfalse, there is no real issue but confusing. Patch by Bertram Scharpf <software@bertram-scharpf.de> [ruby-core:58264] [Bug #9101] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
582fa9cde9
commit
d45c09fb12
@ -1,3 +1,12 @@
|
||||
Mon May 23 21:09:06 2016 Kazuki Yamaguchi <k@rhe.jp>
|
||||
|
||||
* ext/openssl/ossl.c (Init_openssl): Avoid reference to unset global
|
||||
variable. ossl_raise() may be called before dOSSL is set. Since
|
||||
global variables default to 0 and the default value of dOSSL set in
|
||||
Init_openssl() is also Qfalse, there is no real issue but confusing.
|
||||
Patch by Bertram Scharpf <software@bertram-scharpf.de>
|
||||
[ruby-core:58264] [Bug #9101]
|
||||
|
||||
Mon May 23 20:32:16 2016 Kazuki Yamaguchi <k@rhe.jp>
|
||||
|
||||
* ext/openssl/ossl_asn1.c, ext/openssl/ossl_bn.c,
|
||||
|
@ -1176,14 +1176,6 @@ Init_openssl(void)
|
||||
eOSSLError = rb_define_class_under(mOSSL,"OpenSSLError",rb_eStandardError);
|
||||
rb_global_variable(&eOSSLError);
|
||||
|
||||
/*
|
||||
* Verify callback Proc index for ext-data
|
||||
*/
|
||||
if ((ossl_store_ctx_ex_verify_cb_idx = X509_STORE_CTX_get_ex_new_index(0, (void *)"ossl_store_ctx_ex_verify_cb_idx", 0, 0, 0)) < 0)
|
||||
ossl_raise(eOSSLError, "X509_STORE_CTX_get_ex_new_index");
|
||||
if ((ossl_store_ex_verify_cb_idx = X509_STORE_get_ex_new_index(0, (void *)"ossl_store_ex_verify_cb_idx", 0, 0, 0)) < 0)
|
||||
ossl_raise(eOSSLError, "X509_STORE_get_ex_new_index");
|
||||
|
||||
/*
|
||||
* Init debug core
|
||||
*/
|
||||
@ -1194,6 +1186,14 @@ Init_openssl(void)
|
||||
rb_define_module_function(mOSSL, "debug=", ossl_debug_set, 1);
|
||||
rb_define_module_function(mOSSL, "errors", ossl_get_errors, 0);
|
||||
|
||||
/*
|
||||
* Verify callback Proc index for ext-data
|
||||
*/
|
||||
if ((ossl_store_ctx_ex_verify_cb_idx = X509_STORE_CTX_get_ex_new_index(0, (void *)"ossl_store_ctx_ex_verify_cb_idx", 0, 0, 0)) < 0)
|
||||
ossl_raise(eOSSLError, "X509_STORE_CTX_get_ex_new_index");
|
||||
if ((ossl_store_ex_verify_cb_idx = X509_STORE_get_ex_new_index(0, (void *)"ossl_store_ex_verify_cb_idx", 0, 0, 0)) < 0)
|
||||
ossl_raise(eOSSLError, "X509_STORE_get_ex_new_index");
|
||||
|
||||
/*
|
||||
* Get ID of to_der
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user