From ea325fcd6757b5cbd8060d216d7645be72da5e62 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 14 Jun 2012 13:11:41 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ process.c | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4cb7af7a71..aac5f12899 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 14 22:10:50 2012 Tanaka Akira + + * process.c (proc_exec_sh): don't strip leading spaces of the script. + Thu Jun 14 15:54:02 2012 NAKAMURA Usaku * file.c (rb_file_s_basename, rb_file_s_dirname): documentaion fix. 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; }