Commit cd136c12 authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Fix typo in ITypeLib::IsName.

parent 9bc7912e
...@@ -1565,7 +1565,7 @@ static HRESULT WINAPI ITypeLib2_fnIsName( ...@@ -1565,7 +1565,7 @@ static HRESULT WINAPI ITypeLib2_fnIsName(
if(!strcmp(astr,pFInfo->pParamDesc[i].Name)) if(!strcmp(astr,pFInfo->pParamDesc[i].Name))
goto ITypeLib2_fnIsName_exit; 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; if(!strcmp(astr,pVInfo->Name)) goto ITypeLib2_fnIsName_exit;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment