aboutsummaryrefslogtreecommitdiffstats
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
commitaae7040cd0c8cdfd0b12b5d0b7a2fc402fc3e452 (patch)
tree74e0129d8180f5b1fcd084023c4f8715c3d14588 /eval.c
parent3b18462de7a9d3bb14e5bbbc2c375a3e278cdb56 (diff)
downloadruby-aae7040cd0c8cdfd0b12b5d0b7a2fc402fc3e452.tar.gz
* 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
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 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;