1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

strmbase: Remove an always true if condition (coccinellery).

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2017-02-15 10:52:26 +01:00 committed by Alexandre Julliard
parent 1b3cbf52b2
commit 37d8f36de6

View File

@ -569,8 +569,7 @@ HRESULT WINAPI BaseControlVideoImpl_GetVideoPaletteEntries(IBasicVideo *iface, L
if (!pRetrieved || !pPalette)
return E_POINTER;
if (pRetrieved)
*pRetrieved = 0;
*pRetrieved = 0;
return VFW_E_NO_PALETTE_AVAILABLE;
}