From c0a2f6effe65a3d771201b0f532d2beeda1232e6 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 1 Sep 2004 10:28:45 +0000 Subject: [PATCH] * process.c (rb_proc_exec): label cannot precede variable declarations. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ process.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5127e2e05b..7a6e772bf9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 1 19:28:37 2004 Nobuyoshi Nakada + + * process.c (rb_proc_exec): label cannot precede variable declarations. + Tue Aug 31 18:20:49 2004 Hirokazu Yamamoto * ext/tk/tkutil.c (cbsubst_init): fix memory leak diff --git a/process.c b/process.c index 620513c8f8..677fdb2dc8 100644 --- a/process.c +++ b/process.c @@ -1033,11 +1033,10 @@ rb_proc_exec(str) if (*p == '\n') nl = p; } if (!*p) break; - if (nl) goto via_shell; + if (nl) s = nl; } if (*s != ' ' && !ISALPHA(*s) && strchr("*?{}[]<>()~&|\\$;'`\"\n",*s)) { int status; - via_shell: #if defined(MSDOS) before_exec(); status = system(str);