Change return code comparison in AVI control (from patch by

stanleyg76@yahoo.com).
oldstable
Mike Hearn 2003-04-30 23:59:46 +00:00 committed by Alexandre Julliard
parent acc2229137
commit 266a2f297e
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr)
}
if (fnIC.fnICSendMessage(infoPtr->hic, ICM_DECOMPRESS_GET_FORMAT,
(DWORD)infoPtr->inbih, (DWORD)infoPtr->outbih) != ICERR_OK) {
(DWORD)infoPtr->inbih, (DWORD)infoPtr->outbih) != outSize) {
WARN("Can't get output BIH\n");
return FALSE;
}