From: Samuel Pitoiset Date: Wed, 6 Sep 2017 13:24:49 +0000 (+0200) Subject: radv: fix error code when resizing the upload BO X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c9af800cbce71f818b5d5e8ce9bfc5b56611360;p=mesa.git radv: fix error code when resizing the upload BO malloc() failures are unrelated to the device memory. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 4766b115dc9..b3721237ab8 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -271,7 +271,7 @@ radv_cmd_buffer_resize_upload_buf(struct radv_cmd_buffer *cmd_buffer, upload = malloc(sizeof(*upload)); if (!upload) { - cmd_buffer->record_result = VK_ERROR_OUT_OF_DEVICE_MEMORY; + cmd_buffer->record_result = VK_ERROR_OUT_OF_HOST_MEMORY; device->ws->buffer_destroy(bo); return false; }