Commit a533bd30 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

Free an alloc'ed string.

parent 93047e27
......@@ -96,9 +96,10 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data)
case HH_HELP_CONTEXT:
FIXME("Not all HH cases handled correctly\n");
doWinMain(GetModuleHandleW(NULL), file);
default:
return 0;
break;
}
HeapFree(GetProcessHeap(), 0, file);
return 0;
}
HWND WINAPI HtmlHelpA(HWND caller, LPCSTR filename, UINT command, DWORD data)
......
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