Fix bad logic in == NULL test.

This commit is contained in:
Lionel Ulmer 2002-12-15 01:14:21 +00:00 committed by Alexandre Julliard
parent c3c4a41f29
commit d4fcfa858e
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ BOOL VFWAPI DrawDibDraw(HDRAWDIB hdd, HDC hdc,
hdd, hdc, xDst, yDst, dxDst, dyDst, lpbi, lpBits, xSrc, ySrc, dxSrc, dySrc, (DWORD)wFlags);
whdd = MSVIDEO_GetHddPtr(hdd);
if (whdd) return FALSE;
if (!whdd) return FALSE;
if (wFlags & ~(DDF_SAME_HDC | DDF_SAME_DRAW | DDF_NOTKEYFRAME | DDF_UPDATE | DDF_DONTDRAW))
FIXME("wFlags == 0x%08lx not handled\n", (DWORD)wFlags);