From 7f1ad02e68f60b0a91f982acd09cf460247ac5f6 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Jul 2007 06:22:54 +0000 Subject: * ext/openssl/ossl_config.c (ossl_config_set_section): do not initialize aggregations with dynamic values. [ruby-talk:259306] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/openssl/ossl_config.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3fd24d406..02795c057 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jul 20 15:22:51 2007 Nobuyoshi Nakada + + * ext/openssl/ossl_config.c (ossl_config_set_section): do not + initialize aggregations with dynamic values. [ruby-talk:259306] + Fri Jul 20 10:39:28 2007 Nobuyoshi Nakada * parse.y (stmt, mlhs_node, lhs, arg, var_ref): return dummy diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c index 3dfe7f361..cc8e32402 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_block_call(hash, rb_intern("each"), 0, 0, set_conf_section_i, (VALUE)arg); return hash; } -- cgit