From 7373158703c545f387b9557ee864b79a0fd59415 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 8 Jun 2016 12:57:14 +0200 Subject: vo_opengl: hwdec_d3d11egl: remove broken code on error path If ID3D11Device_QueryInterface fails, "multithread" will be set to NULL. The _Release would just make it crash with a null pointer deref. --- video/out/opengl/hwdec_d3d11egl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/video/out/opengl/hwdec_d3d11egl.c b/video/out/opengl/hwdec_d3d11egl.c index cd4a0f03d9..dbf52dc3d2 100644 --- a/video/out/opengl/hwdec_d3d11egl.c +++ b/video/out/opengl/hwdec_d3d11egl.c @@ -177,7 +177,6 @@ static int create(struct gl_hwdec *hw) hr = ID3D11Device_QueryInterface(p->d3d11_device, &IID_ID3D10Multithread, (void **)&multithread); if (FAILED(hr)) { - ID3D10Multithread_Release(multithread); MP_ERR(hw, "Failed to get Multithread interface: %s\n", mp_HRESULT_to_str(hr)); goto fail; -- cgit v1.2.3