From: Gwan-gyeong Mun Date: Sun, 20 Nov 2016 11:44:22 +0000 (+0900) Subject: anv: Fix unintentional integer overflow in anv_CreateDmaBufImageINTEL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e074a08a6ded3260f13111d0e23961dea2da2442;p=mesa.git anv: Fix unintentional integer overflow in anv_CreateDmaBufImageINTEL Since both pCreateInfo->strideInBytes and pCreateInfo->extent.height are of uint32_t type 32-bit arithmetic will be used. Fix unintentional integer overflow by casting to uint64_t before multifying. CID 1394321 Cc: "13.0" Signed-off-by: Mun Gwan-gyeong [Emil Velikov: cast only of the arguments] Reviewed-by: Emil Velikov --- diff --git a/src/intel/vulkan/anv_intel.c b/src/intel/vulkan/anv_intel.c index 1c50e2bdd38..c356e848fe0 100644 --- a/src/intel/vulkan/anv_intel.c +++ b/src/intel/vulkan/anv_intel.c @@ -55,7 +55,7 @@ VkResult anv_CreateDmaBufImageINTEL( goto fail; } - uint64_t size = pCreateInfo->strideInBytes * pCreateInfo->extent.height; + uint64_t size = (uint64_t)pCreateInfo->strideInBytes * pCreateInfo->extent.height; anv_bo_init(&mem->bo, gem_handle, size);