ddraw: Remove redundant "not NULL" check of This (coccicheck).

This commit is contained in:
Michael Stefaniuc 2010-05-18 01:32:45 +02:00 committed by Alexandre Julliard
parent 48e36e43dd
commit 989e98202f

View file

@ -289,7 +289,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->decls);
HeapFree(GetProcessHeap(), 0, This->decls);
HeapFree(GetProcessHeap(), 0, This);
return hr;
}