commit | 0c01b71a4e0eaefb9afee0fdc465b9b368c42a71 | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Mon Jun 15 10:59:45 2009 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Jun 15 13:42:30 2009 +0200 |
tree | 922b7300b5a09ed0b72c1c3d6b197acc28d4c7e2 | |
parent | c48e5e048f776466b8e55a50ce28a73a6ba89f68 [diff] [blame] |
cmd: Replace malloc() with HeapAlloc().
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index bcdf840..0e99f52 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c
@@ -1033,7 +1033,7 @@ if (conditionTRUE && firstcmd && *firstcmd) { WCHAR *command = WCMD_strdupW(firstcmd); WCMD_execute (firstcmd, (*cmdList)->redirects, variable, value, cmdList); - free (command); + HeapFree(GetProcessHeap(), 0, command); }