summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-30 14:06:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-30 14:06:55 +0000
commitbd72f14315855b99849ab8039697fdab01d256b1 (patch)
tree56dd1a35cdb75ab67f1c63f0dcb2209f3397ec06 /eval.c
parent3e28a72d547383589227b55fae562b2e8d954543 (diff)
downloadruby-bd72f14315855b99849ab8039697fdab01d256b1.tar.gz
ruby-bd72f14315855b99849ab8039697fdab01d256b1.tar.xz
ruby-bd72f14315855b99849ab8039697fdab01d256b1.zip
* eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 274e27451..3a1acda1b 100644
--- a/eval.c
+++ b/eval.c
@@ -5240,7 +5240,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;