mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
advpack: Stop processing if there was an error registering an OCX.
This commit is contained in:
parent
5275b1b85f
commit
f170f5d8d3
@ -160,13 +160,21 @@ static HRESULT register_ocxs_callback(HINF hinf, PCWSTR field, void *arg)
|
||||
continue;
|
||||
|
||||
hm = LoadLibraryExW(buffer, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
|
||||
if (!hm)
|
||||
continue;
|
||||
if (hm)
|
||||
{
|
||||
if (do_ocx_reg(hm, TRUE))
|
||||
hr = E_FAIL;
|
||||
|
||||
if (do_ocx_reg(hm, TRUE))
|
||||
FreeLibrary(hm);
|
||||
}
|
||||
else
|
||||
hr = E_FAIL;
|
||||
|
||||
FreeLibrary(hm);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
/* FIXME: display a message box */
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return hr;
|
||||
|
Loading…
Reference in New Issue
Block a user