[Mesa-dev] [PATCH] softpipe: avoid leaking local_mem on machines alloc failure
Ilia Mirkin
imirkin at alum.mit.edu
Sun May 1 02:31:55 UTC 2016
Spotted by Coverity
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
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 d5b5913..53f7a0b 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.7.3
More information about the mesa-dev
mailing list