* win32/win32.c (has_redirection): need to execute shell if commandline

includes newline.  cf. [ruby-core:24560]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-08-04 13:13:17 +00:00
Родитель 61c11677c8
Коммит f00babd1a6
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Aug 4 22:10:34 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (has_redirection): need to execute shell if commandline
includes newline. cf. [ruby-core:24560]
Tue Aug 4 15:06:58 2009 Akinori MUSHA <knu@iDaemons.org>
* lib/ipaddr.rb (IPAddr#{eql?,hash}): Add IPAddr#{eql?,hash} so

Просмотреть файл

@ -1235,8 +1235,8 @@ has_redirection(const char *cmd)
const char *ptr;
//
// Scan the string, looking for redirection (< or >) or pipe
// characters (|) that are not in a quoted string
// Scan the string, looking for redirection characters (< or >), pipe
// character (|) or newline (\n) that are not in a quoted string
//
for (ptr = cmd; *ptr;) {
@ -1253,6 +1253,7 @@ has_redirection(const char *cmd)
case '>':
case '<':
case '|':
case '\n':
if (!quote)
return TRUE;
ptr++;