msdmo: DMORegister() returns E_FAIL if unable to access the registry.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
217f0daadc
commit
4e49d7ba42
|
@ -208,7 +208,7 @@ HRESULT WINAPI DMORegister(
|
|||
ret = RegCreateKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 0, NULL,
|
||||
REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hrkey, NULL);
|
||||
if (ret)
|
||||
return HRESULT_FROM_WIN32(ret);
|
||||
return E_FAIL;
|
||||
|
||||
/* Create clsidDMO key under MediaObjects */
|
||||
ret = RegCreateKeyExW(hrkey, GUIDToString(szguid, clsidDMO), 0, NULL,
|
||||
|
|
Loading…
Reference in New Issue