3 Mar
2020
3 Mar
'20
12:29 p.m.
Nikolay Sivov <nsivov(a)codeweavers.com> writes:
static HRESULT WINAPI transform_activate_ShutdownObject(IMFActivate *iface) { - FIXME("%p.\n", iface); + struct transform_activate *activate = impl_from_IMFActivate(iface);
- return E_NOTIMPL; + TRACE("%p.\n", iface); + + EnterCriticalSection(&activate->attributes.cs); + + if (activate->transform) + { + IMFTransform_Release(activate->transform); + activate->transform;
Did you mean to set it to NULL here? -- Alexandre Julliard julliard(a)winehq.org