Commit de37c1d5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mscoree: Call interface methods properly.

parent 64e94c22
......@@ -88,7 +88,7 @@ static HRESULT WINAPI cordebugprocess_QueryInterface(ICorDebugProcess *iface,
return E_NOINTERFACE;
}
ICorDebug_AddRef(iface);
ICorDebugProcess_AddRef(iface);
return S_OK;
}
......@@ -458,7 +458,7 @@ static HRESULT WINAPI process_enum_QueryInterface(ICorDebugProcessEnum *iface, R
return E_NOINTERFACE;
}
ICorDebug_AddRef(iface);
ICorDebugProcessEnum_AddRef(iface);
return S_OK;
}
......
......@@ -941,7 +941,7 @@ static void CDECL ReallyFixupVTable(struct dll_fixup *fixup)
}
if (info != NULL)
ICLRRuntimeHost_Release(info);
ICLRRuntimeInfo_Release(info);
HeapFree(GetProcessHeap(), 0, filenameA);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment