From e3a5ab2d66563174455683d1dcd53aaaba9cd299 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Mon, 8 May 2017 09:01:56 +0100 Subject: [PATCH] anv: check return value of anv_execbuf_add_bo CID: 1405919 (Error handling issues) Signed-off-by: Lionel Landwerlin Reviewed-by: Iago Toral Quiroga --- src/intel/vulkan/anv_batch_chain.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/intel/vulkan/anv_batch_chain.c b/src/intel/vulkan/anv_batch_chain.c index 6d6babadea1..9def174b429 100644 --- a/src/intel/vulkan/anv_batch_chain.c +++ b/src/intel/vulkan/anv_batch_chain.c @@ -1048,10 +1048,15 @@ anv_execbuf_add_bo(struct anv_execbuf *exec, obj->relocs_ptr = (uintptr_t) relocs->relocs; for (size_t i = 0; i < relocs->num_relocs; i++) { + VkResult result; + /* A quick sanity check on relocations */ assert(relocs->relocs[i].offset < bo->size); - anv_execbuf_add_bo(exec, relocs->reloc_bos[i], NULL, - extra_flags, alloc); + result = anv_execbuf_add_bo(exec, relocs->reloc_bos[i], NULL, + extra_flags, alloc); + + if (result != VK_SUCCESS) + return result; } } -- 2.30.2