mirror of
https://github.com/reactos/wine.git
synced 2025-02-04 02:56:31 +00:00
janitorial: Remove two redundant checks for NULL.
This commit is contained in:
parent
22ecd7aa67
commit
719a02856d
@ -913,8 +913,7 @@ void WINAPI ILGlobalFree( LPITEMIDLIST pidl)
|
||||
{
|
||||
TRACE("%p\n", pidl);
|
||||
|
||||
if (pidl)
|
||||
Free(pidl);
|
||||
Free(pidl);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
|
@ -1507,7 +1507,7 @@ error:
|
||||
FIXME("(%p) Something's still holding the front buffer\n",This);
|
||||
}
|
||||
}
|
||||
if(object) HeapFree(GetProcessHeap(), 0, object);
|
||||
HeapFree(GetProcessHeap(), 0, object);
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user