msxml3: Remove redundant NULL check before HeapFree (Smatch).

This commit is contained in:
Michael Stefaniuc 2008-07-17 22:49:06 +02:00 committed by Alexandre Julliard
parent c876c929a2
commit 5330f7171d
1 changed files with 1 additions and 1 deletions

View File

@ -1036,7 +1036,7 @@ static HRESULT WINAPI isaxxmlreader_parse(
xmlFreeParserCtxt(locator->pParserCtxt);
locator->pParserCtxt = NULL;
}
if(data) HeapFree(GetProcessHeap(), 0, data);
HeapFree(GetProcessHeap(), 0, data);
ISAXLocator_Release((ISAXLocator*)&locator->lpSAXLocatorVtbl);
return hr;
}