urlmon: Fixed memory free of an uninitialized variable.

Thanks to Gerald for spotting this.
This commit is contained in:
Thomas Mullaly 2010-11-02 21:12:23 -04:00 committed by Alexandre Julliard
parent cac2c176ef
commit 03efc237b6
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}