From: Jason Ekstrand Date: Wed, 22 Mar 2017 00:16:46 +0000 (-0700) Subject: anv/image: Return early when unbinding an image X-Git-Tag: upstream/17.1.0~1146 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c942faf8f37d14e7934a21c15ad2438dde2d501e;p=platform%2Fupstream%2Fmesa.git anv/image: Return early when unbinding an image Found by inspection. Reviewed-by: Chad Versace Reviewed-by: Iago Toral Quiroga Cc: "17.0 13.0" --- diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 7be988a..33499ab 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -335,14 +335,15 @@ VkResult anv_BindImageMemory( ANV_FROM_HANDLE(anv_device_memory, mem, _memory); ANV_FROM_HANDLE(anv_image, image, _image); - if (mem) { - image->bo = &mem->bo; - image->offset = memoryOffset; - } else { + if (mem == NULL) { image->bo = NULL; image->offset = 0; + return VK_SUCCESS; } + image->bo = &mem->bo; + image->offset = memoryOffset; + if (image->aux_surface.isl.size > 0) { /* The offset and size must be a multiple of 4K or else the