[前][次][番号順一覧][スレッド一覧]

ruby-changes:9472

From: yugui <ko1@a...>
Date: Thu, 25 Dec 2008 18:53:29 +0900 (JST)
Subject: [ruby-changes:9472] Ruby:r21010 (ruby_1_9_1): merges r20934 from trunk into ruby_1_9_1.

yugui	2008-12-25 18:53:11 +0900 (Thu, 25 Dec 2008)

  New Revision: 21010

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21010

  Log:
    merges r20934 from trunk into ruby_1_9_1.
    * io.c (pipe_open): need to initialize args.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/io.c

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 21009)
+++ ruby_1_9_1/ChangeLog	(revision 21010)
@@ -1,3 +1,7 @@
+Tue Dec 23 15:30:02 2008  NAKAMURA Usaku  <usa@r...>
+
+	* io.c (pipe_open): need to initialize args.
+
 Tue Dec 23 14:18:14 2008  NAKAMURA Usaku  <usa@r...>
 
 	* include/ruby/st.h: need to include defines.h because LONG_LONG is
Index: ruby_1_9_1/io.c
===================================================================
--- ruby_1_9_1/io.c	(revision 21009)
+++ ruby_1_9_1/io.c	(revision 21010)
@@ -4448,7 +4448,7 @@
     struct popen_arg arg;
 #elif defined(_WIN32)
     volatile VALUE argbuf;
-    char **args;
+    char **args = NULL;
     struct rb_exec_arg sarg;
     int pair[2], write_pair[2];
 #endif

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]