Module: wine Branch: master Commit: b486a23bac8bd25da5dcf8d809e0ce8fabb0ca64 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b486a23bac8bd25da5dcf8d809...
Author: Stefan Dösinger stefan@codeweavers.com Date: Thu Sep 3 20:56:27 2015 +0200
d3d11: Set surface and volume parents to NULL.
---
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;