1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
akr 2012-06-14 13:11:41 +00:00
parent f927ec15c9
commit ea325fcd67
2 changed files with 9 additions and 3 deletions

View file

@ -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.

View file

@ -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;
}