Module: Mesa Branch: master Commit: aa59f9c8bc6796796487dd74b7fd568186b38350 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=aa59f9c8bc6796796487dd74b7fd568186b38350
Author: Eric Engestrom <[email protected]> Date: Wed Jul 25 19:43:24 2018 +0100 anv: don't crash on vkDestroyDevice(NULL) CovID: 1438132 Fixes: a99c9e63a07477634ab73 "anv: finish the binding_table_pool on destroyDevice when use_softpin" Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Jose Maria Casanova Crespo <[email protected]> --- src/intel/vulkan/anv_device.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 97a71563b8..6b72a79a91 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1833,11 +1833,13 @@ void anv_DestroyDevice( const VkAllocationCallbacks* pAllocator) { ANV_FROM_HANDLE(anv_device, device, _device); - struct anv_physical_device *physical_device = &device->instance->physicalDevice; + struct anv_physical_device *physical_device; if (!device) return; + physical_device = &device->instance->physicalDevice; + anv_device_finish_blorp(device); anv_pipeline_cache_finish(&device->default_pipeline_cache); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
