From bd72f14315855b99849ab8039697fdab01d256b1 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: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++-- eval.c | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 512da7ac3..2125d2b54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,12 @@ +Tue Aug 30 23:06:29 2005 Nobuyoshi Nakada + + * eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917] + Tue Aug 30 19:34:27 2005 GOTOU Yuuzou * ext/digest/md5/md5ossl.h, ext/digest/rmd160/rmd160ossl.h, ext/digest/sha1/sha1ossl.h: include to avoid - error in compilation with OpenSSL-0.9.8. [ruby-list:41068] + error in compilation with OpenSSL-0.9.8. [ruby-list:41068] Mon Aug 29 19:54:21 2005 Hirokazu Yamamoto @@ -47,7 +51,7 @@ Sat Aug 20 22:37:13 2005 NAKAMURA, Hiroshi Fri Aug 19 18:13:39 2005 Tanaka Akira - * lib/time.rb (Time.apply_offset): fix a problem with last day of + * lib/time.rb (Time.apply_offset): fix a problem with last day of month. reported by Lucas Nussbaum. [ruby-talk:152866] Thu Aug 18 12:46:28 2005 Hirokazu Yamamoto 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; -- cgit