Commit dde9f319 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32/tests: Replace malloc() with HeapAlloc().

parent d6a9082d
......@@ -333,11 +333,11 @@ static void create_test_verb_dde(const char* extension, const char* verb,
}
else
{
cmd=malloc(strlen(argv0)+10+strlen(child_file)+2+strlen(cmdtail)+1);
cmd=HeapAlloc(GetProcessHeap(), 0, strlen(argv0)+10+strlen(child_file)+2+strlen(cmdtail)+1);
sprintf(cmd,"%s shlexec \"%s\" %s", argv0, child_file, cmdtail);
rc=RegSetValueEx(hkey_cmd, NULL, 0, REG_SZ, (LPBYTE)cmd, strlen(cmd)+1);
assert(rc==ERROR_SUCCESS);
free(cmd);
HeapFree(GetProcessHeap(), 0, cmd);
}
if (ddeexec)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment