From: Jonathan Marek Date: Sat, 13 Jun 2020 01:43:24 +0000 (-0400) Subject: turnip: replace a memset(0) with zalloc in CreateRenderPass X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4099201bcd4e5c8e6c281368b5b75d5fc89b3ff;p=mesa.git turnip: replace a memset(0) with zalloc in CreateRenderPass Signed-off-by: Jonathan Marek Part-of: --- diff --git a/src/freedreno/vulkan/tu_pass.c b/src/freedreno/vulkan/tu_pass.c index 371e561cb86..3c76c076c67 100644 --- a/src/freedreno/vulkan/tu_pass.c +++ b/src/freedreno/vulkan/tu_pass.c @@ -561,12 +561,11 @@ tu_CreateRenderPass2(VkDevice _device, attachments_offset = size; size += pCreateInfo->attachmentCount * sizeof(pass->attachments[0]); - pass = vk_alloc2(&device->alloc, pAllocator, size, 8, + pass = vk_zalloc2(&device->alloc, pAllocator, size, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT); if (pass == NULL) return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY); - memset(pass, 0, size); pass->attachment_count = pCreateInfo->attachmentCount; pass->subpass_count = pCreateInfo->subpassCount; pass->attachments = (void *) pass + attachments_offset;