From: Stefan Dösinger Subject: [PATCH 6/6] d3d11: Set surface and volume parents to NULL. Message-Id: <1441277577-24225-6-git-send-email-stefan@codeweavers.com> Date: Thu, 3 Sep 2015 12:52:57 +0200 They are not used any more. --- dlls/d3d11/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c index 4dd528e..dee3c57 100644 --- a/dlls/d3d11/device.c +++ b/dlls/d3d11/device.c @@ -2885,7 +2885,7 @@ static HRESULT CDECL device_parent_surface_created(struct wined3d_device_parent TRACE("device_parent %p, container_parent %p, surface %p, parent %p, parent_ops %p.\n", device_parent, container_parent, surface, parent, parent_ops); - *parent = container_parent; + *parent = NULL; *parent_ops = &d3d10_null_wined3d_parent_ops; return S_OK; @@ -2898,7 +2898,7 @@ static HRESULT CDECL device_parent_volume_created(struct wined3d_device_parent * TRACE("device_parent %p, container_parent %p, volume %p, parent %p, parent_ops %p.\n", device_parent, container_parent, volume, parent, parent_ops); - *parent = container_parent; + *parent = NULL; *parent_ops = &d3d10_null_wined3d_parent_ops; return S_OK; -- 2.4.6