mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (w32_spawn): v2
is used not only for shell
but also
`cmd`, so must not free before using `cmd`. [ruby-core:66648] [Bug #10563] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
655285b5f7
commit
396e3da75d
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Dec 3 11:14:14 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (w32_spawn): `v2` is used not only for `shell` but also
|
||||
`cmd`, so must not free before using `cmd`.
|
||||
[ruby-core:66648] [Bug #10563]
|
||||
|
||||
Wed Dec 3 09:48:57 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/racc/cparse/cparse.c (cparse_params_type): use typed data.
|
||||
|
|
|
@ -1321,9 +1321,9 @@ w32_spawn(int mode, const char *cmd, const char *prog, UINT cp)
|
|||
}
|
||||
|
||||
if (!e && shell && !(wshell = mbstr_to_wstr(cp, shell, -1, NULL))) e = E2BIG;
|
||||
if (v2) ALLOCV_END(v2);
|
||||
if (cmd_sep) *cmd_sep = sep;
|
||||
if (!e && cmd && !(wcmd = mbstr_to_wstr(cp, cmd, -1, NULL))) e = E2BIG;
|
||||
if (v2) ALLOCV_END(v2);
|
||||
if (v) ALLOCV_END(v);
|
||||
|
||||
if (!e) {
|
||||
|
|
Loading…
Add table
Reference in a new issue