From 48c72cacc3990e36f5bce2f1c578604414650e57 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Mar 2009 22:25:57 +0000 Subject: * io.c (pipe_open): should pass program name even if multiple arguments are given. fix for TestProcess::test_argv0. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 47f036741..0a984a18d 100644 --- a/io.c +++ b/io.c @@ -4755,7 +4755,7 @@ pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode, rb_run_exec_options(eargp, &sarg); } while ((pid = (args ? - rb_w32_aspawn(P_NOWAIT, 0, args) : + rb_w32_aspawn(P_NOWAIT, cmd, args) : rb_w32_spawn(P_NOWAIT, cmd, 0))) == -1) { /* exec failed */ switch (errno) { -- cgit