From 34996e23efc17063c369ca0435c51d98f496f225 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 11 Oct 2012 00:50:29 +0000 Subject: [PATCH] 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 --- iseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iseq.c b/iseq.c index fa83d1b670..792f401bde 100644 --- a/iseq.c +++ b/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;