mirror of https://github.com/mpv-player/mpv
hwdec/d3d11va: fix a possible memory leak
This commit is contained in:
parent
27dab30209
commit
3447463008
|
@ -67,6 +67,7 @@ static void uninit(struct ra_hwdec *hw)
|
||||||
{
|
{
|
||||||
struct priv_owner *p = hw->priv;
|
struct priv_owner *p = hw->priv;
|
||||||
hwdec_devices_remove(hw->devs, &p->hwctx);
|
hwdec_devices_remove(hw->devs, &p->hwctx);
|
||||||
|
av_buffer_unref(&p->hwctx.av_device_ref);
|
||||||
SAFE_RELEASE(p->device);
|
SAFE_RELEASE(p->device);
|
||||||
SAFE_RELEASE(p->device1);
|
SAFE_RELEASE(p->device1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue