Commit 5e568455 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

avifil32: Add a missing AddRef in IGetFrame_QueryInterface().

parent f884cf0d
...@@ -140,6 +140,7 @@ static HRESULT WINAPI IGetFrame_fnQueryInterface(IGetFrame *iface, ...@@ -140,6 +140,7 @@ static HRESULT WINAPI IGetFrame_fnQueryInterface(IGetFrame *iface,
if (IsEqualGUID(&IID_IUnknown, refiid) || if (IsEqualGUID(&IID_IUnknown, refiid) ||
IsEqualGUID(&IID_IGetFrame, refiid)) { IsEqualGUID(&IID_IGetFrame, refiid)) {
*obj = iface; *obj = iface;
IGetFrame_AddRef(iface);
return S_OK; return S_OK;
} }
......
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