From: Tapani Pälli Date: Mon, 9 Oct 2017 05:17:15 +0000 (+0300) Subject: anv: fix null pointer dereference X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=63e6db18c5cdec50688d604a43ddaf86a2238f76;p=mesa.git anv: fix null pointer dereference CID: 1419033 Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 487ff275940..c8ebdce0b4e 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -577,6 +577,7 @@ static void anv_image_bind_memory_plane(struct anv_device *device, if (!memory) { image->planes[plane].bo = NULL; image->planes[plane].bo_offset = 0; + return; } image->planes[plane].bo = memory->bo;