From 3950aa47df26ad4cbfa9ca02dffa8ebd5a9b432a Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sat, 30 Apr 2016 22:31:26 -0400 Subject: [PATCH] softpipe: avoid leaking local_mem on machines alloc failure Spotted by Coverity Signed-off-by: Ilia Mirkin Reviewed-by: Vinson Lee --- src/gallium/drivers/softpipe/sp_compute.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/softpipe/sp_compute.c b/src/gallium/drivers/softpipe/sp_compute.c index d5b5913f6a2..53f7a0beb77 100644 --- a/src/gallium/drivers/softpipe/sp_compute.c +++ b/src/gallium/drivers/softpipe/sp_compute.c @@ -191,8 +191,10 @@ softpipe_launch_grid(struct pipe_context *context, } machines = CALLOC(sizeof(struct tgsi_exec_machine *), num_threads_in_group); - if (!machines) + if (!machines) { + FREE(local_mem); return; + } /* initialise machines + GRID_SIZE + THREAD_ID + BLOCK_SIZE */ for (d = 0; d < bdepth; d++) { -- 2.30.2