ruby-changes:23942
From: akr <ko1@a...>
Date: Sun, 10 Jun 2012 01:37:56 +0900 (JST)
Subject: [ruby-changes:23942] akr:r35993 (trunk): * process.c (rb_fork_internal): initialize exc.
akr 2012-06-10 01:37:44 +0900 (Sun, 10 Jun 2012) New Revision: 35993 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=35993 Log: * process.c (rb_fork_internal): initialize exc. Modified files: trunk/ChangeLog trunk/process.c Index: ChangeLog =================================================================== --- ChangeLog (revision 35992) +++ ChangeLog (revision 35993) @@ -1,3 +1,7 @@ +Sun Jun 10 01:37:18 2012 Tanaka Akira <akr@f...> + + * process.c (rb_fork_internal): initialize exc. + Sun Jun 10 00:19:25 2012 Tanaka Akira <akr@f...> * process.c: don't use non async-signal-safe functions in a child Index: process.c =================================================================== --- process.c (revision 35992) +++ process.c (revision 35993) @@ -2881,7 +2881,7 @@ rb_pid_t pid; int err, state = 0; int ep[2]; - VALUE exc; + VALUE exc = Qnil; int error_occured; if (status) *status = 0; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/