From ea325fcd6757b5cbd8060d216d7645be72da5e62 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 14 Jun 2012 13:11:41 +0000 Subject: * process.c (proc_exec_sh): don't strip leading spaces of the script. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index b4e2b7c94c..41206e180a 100644 --- a/process.c +++ b/process.c @@ -1205,11 +1205,13 @@ proc_exec_sh(const char *str, VALUE envp_str) rb_notimplement(); UNREACHABLE; #else + const char *s; - while (*str == ' ' || *str == '\t' || *str == '\n') - str++; + s = str; + while (*s == ' ' || *s == '\t' || *s == '\n') + s++; - if (!*str) { + if (!*s) { errno = ENOENT; return -1; } -- cgit v1.2.3