From 15d785a4a2ab7c7311b36f0a0f9854ef44cfc8e0 Mon Sep 17 00:00:00 2001 From: yugui Date: Thu, 25 Dec 2008 09:53:11 +0000 Subject: merges r20934 from trunk into ruby_1_9_1. * io.c (pipe_open): need to initialize args. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ io.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 03f8f879c..04e87e245 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 23 15:30:02 2008 NAKAMURA Usaku + + * io.c (pipe_open): need to initialize args. + Tue Dec 23 14:18:14 2008 NAKAMURA Usaku * include/ruby/st.h: need to include defines.h because LONG_LONG is diff --git a/io.c b/io.c index 61801d36e..520c062a0 100644 --- a/io.c +++ b/io.c @@ -4448,7 +4448,7 @@ pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode, 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 -- cgit