advpack: Ignore the return value from the OCX registration.

oldstable
James Hawkins 2006-04-28 19:53:49 -05:00 committed by Alexandre Julliard
parent f43fd5ec1b
commit 4b9311b5b2
1 changed files with 2 additions and 1 deletions

View File

@ -443,7 +443,8 @@ HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg)
if (!reg_func)
return E_FAIL;
return reg_func();
reg_func();
return S_OK;
}
/***********************************************************************