summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-04 02:35:47 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-04 02:35:47 +0000
commit99e63fba29afb9f6dbf95396a12524ec8b8096ac (patch)
tree02b1a48f4958c00708cb4704110c93792df37c9b /vm_eval.c
parent7d79f355fcfb39c52f5b47f44c99c0e645d1878a (diff)
* vm_eval.c (ruby_eval_string_from_file_protect): initializer element is not computable at load time.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vm_eval.c b/vm_eval.c
index ce5e340b3e..899389848b 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1174,7 +1174,9 @@ eval_string_from_file_helper(void *data) {
VALUE
ruby_eval_string_from_file_protect(const char *str, const char *filename, int *state) {
- struct eval_string_from_file_arg arg = { str, filename };
+ struct eval_string_from_file_arg arg;
+ arg.str = str;
+ arg.filename = filename;
return rb_protect((VALUE (*)(VALUE))eval_string_from_file_helper, (VALUE)&arg, state);
}