Commit a04ffc37 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Don't use freed string in TRACE.

parent 9dc2563a
......@@ -74,7 +74,7 @@ static HRESULT get_protocol_iface(LPCWSTR schema, DWORD schema_len, IUnknown **r
res = RegOpenKeyW(HKEY_CLASSES_ROOT, wszKey, &hkey);
HeapFree(GetProcessHeap(), 0, wszKey);
if(res != ERROR_SUCCESS) {
TRACE("Could not open key %s\n", debugstr_w(wszKey));
TRACE("Could not open protocol handler key\n");
return E_FAIL;
}
......
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