msxml3: Fix a leak on error path.

This commit is contained in:
Nikolay Sivov 2012-11-29 07:35:19 -05:00 committed by Alexandre Julliard
parent f929611a68
commit 00484ed942

View file

@ -598,6 +598,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
hres = IUnknown_QueryInterface(This->outer, get_riid_from_tid(data->funcs[n].tid), (void**)&unk);
if(FAILED(hres)) {
ERR("Could not get iface: %08x\n", hres);
ITypeInfo_Release(ti);
return E_FAIL;
}