summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--process.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7df6015b5d..1473c46475 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Wed Jun 13 10:20:03 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Wed Jun 13 10:20:27 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * process.c (rb_exec_fillarg): get rid of SIZE_T_MAX which may need
+ more headers.
* process.c (rb_exec_fillarg): fix array element size. "continue" and
"readonly" exceeded the size.
diff --git a/process.c b/process.c
index dbbf4f3092..ea41a4c483 100644
--- a/process.c
+++ b/process.c
@@ -1938,7 +1938,7 @@ rb_exec_fillarg(VALUE prog, int argc, VALUE *argv, VALUE env, VALUE opthash, str
has_meta = 1;
}
else if (*p == '/') {
- first.len = SIZE_T_MAX; /* longer than any posix_sh_cmds */
+ first.len = 0x100; /* longer than any posix_sh_cmds */
}
}
if (has_meta)