mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
The for loop in ITypeLib2_fnFindName was wrong (extra ';').
This commit is contained in:
parent
12bf7f1dde
commit
b6474aebd4
@ -2196,7 +2196,7 @@ static HRESULT WINAPI ITypeLib2_fnFindName(
|
||||
if(!memcmp(szNameBuf,pFInfo->pParamDesc[i].Name,nNameBufLen))
|
||||
goto ITypeLib2_fnFindName_exit;
|
||||
}
|
||||
for(pVInfo=pTInfo->varlist;pVInfo;pVInfo=pVInfo->next) ;
|
||||
for(pVInfo=pTInfo->varlist;pVInfo;pVInfo=pVInfo->next)
|
||||
if(!memcmp(szNameBuf,pVInfo->Name, nNameBufLen)) goto ITypeLib2_fnFindName_exit;
|
||||
continue;
|
||||
ITypeLib2_fnFindName_exit:
|
||||
|
Loading…
Reference in New Issue
Block a user