Suppress warning: 'iseqval' may be used uninitialized in this function

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-10-11 00:50:29 +00:00
Родитель b5ff6f11b5
Коммит 34996e23ef
1 изменённых файлов: 1 добавлений и 1 удалений

2
iseq.c
Просмотреть файл

@ -581,7 +581,7 @@ rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE absolute_path, VALUE li
int state;
rb_thread_t *th = GET_THREAD();
rb_block_t *prev_base_block = th->base_block;
VALUE iseqval;
VALUE iseqval = Qundef;
th->base_block = base_block;