Fix typo in ITypeLib::IsName.

This commit is contained in:
Huw D M Davies 2000-07-08 11:46:33 +00:00 committed by Alexandre Julliard
parent 9bc7912e32
commit cd136c1256

View file

@ -1565,7 +1565,7 @@ static HRESULT WINAPI ITypeLib2_fnIsName(
if(!strcmp(astr,pFInfo->pParamDesc[i].Name))
goto ITypeLib2_fnIsName_exit;
}
for(pVInfo=pTInfo->varlist;pVInfo;pVInfo=pVInfo->next) ;
for(pVInfo=pTInfo->varlist;pVInfo;pVInfo=pVInfo->next)
if(!strcmp(astr,pVInfo->Name)) goto ITypeLib2_fnIsName_exit;
}