Commit 03efc237 authored by Thomas Mullaly's avatar Thomas Mullaly Committed by Alexandre Julliard

urlmon: Fixed memory free of an uninitialized variable.

Thanks to Gerald for spotting this.
parent cac2c176
......@@ -5605,7 +5605,6 @@ static HRESULT combine_uri(Uri *base, Uri *relative, DWORD flags, IUri **result)
data.uri = SysAllocString(relative->raw_uri);
if(!data.uri) {
IUri_Release(URI(ret));
*result = NULL;
return E_OUTOFMEMORY;
}
......
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