From aae7040cd0c8cdfd0b12b5d0b7a2fc402fc3e452 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 30 Aug 2005 14:06:55 +0000 Subject: * eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 3990e895d2..9008e88eb8 100644 --- a/eval.c +++ b/eval.c @@ -5363,7 +5363,7 @@ rb_rescue2(b_proc, data1, r_proc, data2, va_alist) int state; volatile VALUE result; volatile VALUE e_info = ruby_errinfo; - volatile int handle; + volatile int handle = Qfalse; VALUE eclass; va_list args; -- cgit v1.2.1