Module: Mesa Branch: master Commit: 63e6db18c5cdec50688d604a43ddaf86a2238f76 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=63e6db18c5cdec50688d604a43ddaf86a2238f76
Author: Tapani Pälli <[email protected]> Date: Mon Oct 9 08:17:15 2017 +0300 anv: fix null pointer dereference CID: 1419033 Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/intel/vulkan/anv_image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 487ff27594..c8ebdce0b4 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
