* iseq.c (rb_iseq_compile_with_option): get rid of segv.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16548 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e12388713f
commit
87c828e39e
@ -1,3 +1,7 @@
|
||||
Fri May 23 06:15:20 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* iseq.c (rb_iseq_compile_with_option): get rid of segv.
|
||||
|
||||
Fri May 23 02:29:14 2008 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* insns.def (opt_gt|ge|lt|le): use values directly to compare.
|
||||
|
2
iseq.c
2
iseq.c
@ -443,7 +443,7 @@ rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE line, VALUE opt)
|
||||
rb_thread_t *th = GET_THREAD();
|
||||
make_compile_option(&option, opt);
|
||||
|
||||
if (th->base_block) {
|
||||
if (th->base_block && th->base_block->iseq) {
|
||||
return rb_iseq_new_with_opt(node, th->base_block->iseq->name,
|
||||
file, th->base_block->iseq->self,
|
||||
ISEQ_TYPE_EVAL, &option);
|
||||
|
Loading…
x
Reference in New Issue
Block a user