summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2016-04-12 17:03:52 +0100
committerDave Airlie <airlied@redhat.com>2016-04-13 13:21:37 +1000
commit46bfcd61f5ca81fc7e19f0d74ee9fa70f16e9df7 (patch)
tree8cc92e385c2e476fa3ce9ce470a85ddec537a175 /src
parent5a3d928e2cd8eeb4776c732cab5c0fce9d593ea2 (diff)
downloadexternal_mesa3d-46bfcd61f5ca81fc7e19f0d74ee9fa70f16e9df7.tar.gz
external_mesa3d-46bfcd61f5ca81fc7e19f0d74ee9fa70f16e9df7.tar.bz2
external_mesa3d-46bfcd61f5ca81fc7e19f0d74ee9fa70f16e9df7.zip
softpipe: Free tgsi.image elements on context destruction.
Courtesy of address sanitizer. [airlied: free buffers as well] Reviewed-by: Roland Scheidegger <sroland@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/softpipe/sp_context.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c
index f66fea2d5d..0342fc6f8c 100644
--- a/src/gallium/drivers/softpipe/sp_context.c
+++ b/src/gallium/drivers/softpipe/sp_context.c
@@ -117,6 +117,8 @@ softpipe_destroy( struct pipe_context *pipe )
for (i = 0; i < PIPE_SHADER_TYPES; i++) {
FREE(softpipe->tgsi.sampler[i]);
+ FREE(softpipe->tgsi.image[i]);
+ FREE(softpipe->tgsi.buffer[i]);
}
FREE( softpipe );