mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
ole32: Fix assumption about HRESULT failure code value.
This commit is contained in:
parent
5185409144
commit
2f61e19156
@ -187,9 +187,9 @@ StdGlobalInterfaceTable_RegisterInterfaceInGlobal(
|
||||
TRACE("About to marshal the interface\n");
|
||||
|
||||
hres = CreateStreamOnHGlobal(0, TRUE, &stream);
|
||||
if (hres) return hres;
|
||||
if (hres != S_OK) return hres;
|
||||
hres = CoMarshalInterface(stream, riid, pUnk, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLESTRONG);
|
||||
if (hres)
|
||||
if (hres != S_OK)
|
||||
{
|
||||
IStream_Release(stream);
|
||||
return hres;
|
||||
@ -281,7 +281,7 @@ StdGlobalInterfaceTable_GetInterfaceFromGlobal(
|
||||
|
||||
LeaveCriticalSection(&git_section);
|
||||
|
||||
if (hres) {
|
||||
if (hres != S_OK) {
|
||||
WARN("Failed to clone stream with error 0x%08x\n", hres);
|
||||
return hres;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user