summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-14 13:11:41 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-14 13:11:41 +0000
commitea325fcd6757b5cbd8060d216d7645be72da5e62 (patch)
tree8ce799d03e01fea24ab2ba29bd1752973a620d56
parentf927ec15c9f9db9b213af2dad931fb8f386835c2 (diff)
* 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
-rw-r--r--ChangeLog4
-rw-r--r--process.c8
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 <akr@fsij.org>
+
+ * process.c (proc_exec_sh): don't strip leading spaces of the script.
+
Thu Jun 14 15:54:02 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* 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;
}