janitorial: Removed the rest of the redundant NULL checks before HeapFree.

This commit is contained in:
Michael Stefaniuc 2006-08-09 22:34:56 +02:00 committed by Alexandre Julliard
parent b40f4c0b17
commit 757ee19ca1
4 changed files with 8 additions and 15 deletions

View File

@ -313,7 +313,7 @@ err_out:
/* Let's hope we never need this ;) */
if(wineD3DDevice) IWineD3DDevice_Release(wineD3DDevice);
if(wineD3D) IWineD3D_Release(wineD3D);
if(This) HeapFree(GetProcessHeap(), 0, This);
HeapFree(GetProcessHeap(), 0, This);
return hr;
}

View File

@ -1243,7 +1243,7 @@ BOOL WINAPI GetTextExtentExPointW( HDC hdc, LPCWSTR str, INT count,
if (lpnFit)
*lpnFit = nFit;
if (dxs && ! alpDx)
if (! alpDx)
HeapFree(GetProcessHeap(), 0, dxs);
GDI_ReleaseObj( hdc );

View File

@ -767,8 +767,7 @@ DWORD WINAPI TakeOwnershipOfFile(LPCWSTR lpFileName)
fail:;
dwError = GetLastError();
if (pOwner != NULL)
MyFree(pOwner);
MyFree(pOwner);
if (hToken != NULL)
CloseHandle(hToken);

View File

@ -172,18 +172,12 @@ StringTableDestroy(HSTRING_TABLE hStringTable)
{
for (i = 0; i < pStringTable->dwMaxSlots; i++)
{
if (pStringTable->pSlots[i].pString != NULL)
{
MyFree(pStringTable->pSlots[i].pString);
pStringTable->pSlots[i].pString = NULL;
}
MyFree(pStringTable->pSlots[i].pString);
pStringTable->pSlots[i].pString = NULL;
if (pStringTable->pSlots[i].pData != NULL)
{
MyFree(pStringTable->pSlots[i].pData);
pStringTable->pSlots[i].pData = NULL;
pStringTable->pSlots[i].dwSize = 0;
}
MyFree(pStringTable->pSlots[i].pData);
pStringTable->pSlots[i].pData = NULL;
pStringTable->pSlots[i].dwSize = 0;
}
MyFree(pStringTable->pSlots);