diff options
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | version.h | 2 | ||||
| -rw-r--r-- | win32/win32.c | 1 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Thu Nov 8 14:05:31 2012 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/win32.c (has_redirection): should use shell (cmd.exe) when + the commandline containts '&'. + reported by Roger Pack at [ruby-core:47912] [Bug #7143], and + patched by Heesob Park at [ruby-core:47931]. + Fri Oct 26 17:22:18 2012 NAKAMURA Usaku <usa@ruby-lang.org> * file.c (append_fspath): need to set the encoding to result always. @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.3" -#define RUBY_PATCHLEVEL 305 +#define RUBY_PATCHLEVEL 306 #define RUBY_RELEASE_DATE "2012-11-08" #define RUBY_RELEASE_YEAR 2012 diff --git a/win32/win32.c b/win32/win32.c index 7c2671f43a..fcefe2c6c7 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -1375,6 +1375,7 @@ has_redirection(const char *cmd) case '>': case '<': case '|': + case '&': case '\n': if (!quote) return TRUE; |
