ole32: Prevent recursion when CLSIDFromString is passed empty string.

This commit is contained in:
Andrey Turkin 2009-01-19 18:11:22 +03:00 committed by Alexandre Julliard
parent fc26627cdc
commit 644220b518
1 changed files with 1 additions and 1 deletions

View File

@ -1694,7 +1694,7 @@ HRESULT WINAPI CLSIDFromProgID(LPCOLESTR progid, LPCLSID clsid)
return CO_E_CLASSSTRING;
}
RegCloseKey(xhkey);
return CLSIDFromString(buf2,clsid);
return __CLSIDFromString(buf2,clsid);
}