From 075a278e5637819db2fcd0c439f81bd5094ee77f Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 22 Aug 2007 01:58:41 +0000 Subject: * ext/openssl/ossl_config.c (ossl_config_set_section): do not initialize aggregations with dynamic values. [ruby-talk:259306] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/ossl_config.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c index ef89fdfe0d..f1d6a98253 100644 --- a/ext/openssl/ossl_config.c +++ b/ext/openssl/ossl_config.c @@ -245,7 +245,10 @@ set_conf_section_i(VALUE i, VALUE *arg) static VALUE ossl_config_set_section(VALUE self, VALUE section, VALUE hash) { - VALUE arg[2] = { self, section }; + VALUE arg[2]; + + arg[0] = self; + arg[1] = section; rb_iterate(rb_each, hash, set_conf_section_i, (VALUE)arg); return hash; } -- cgit v1.2.3