Mesa (master): gallium/util: Fix memory leak

Aaron Watry awatry at kemper.freedesktop.org
Thu Mar 6 17:38:56 UTC 2014


Module: Mesa
Branch: master
Commit: fb781526787463cb4a1c596b6f8ed867d24b87a2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fb781526787463cb4a1c596b6f8ed867d24b87a2

Author: Aaron Watry <awatry at gmail.com>
Date:   Tue Mar  4 17:12:19 2014 -0600

gallium/util: Fix memory leak

Fix a leaked vertex shader in u_blitter.c

Signed-off-by: Aaron Watry <awatry at gmail.com>
Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>

CC: "10.1" <mesa-stable at lists.freedesktop.org>

---

 src/gallium/auxiliary/util/u_blitter.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c
index 95e7fb6..66b511e 100644
--- a/src/gallium/auxiliary/util/u_blitter.c
+++ b/src/gallium/auxiliary/util/u_blitter.c
@@ -364,6 +364,8 @@ void util_blitter_destroy(struct blitter_context *blitter)
    pipe->delete_vs_state(pipe, ctx->vs);
    if (ctx->vs_pos_only)
       pipe->delete_vs_state(pipe, ctx->vs_pos_only);
+   if (ctx->vs_layered)
+      pipe->delete_vs_state(pipe, ctx->vs_layered);
    pipe->delete_vertex_elements_state(pipe, ctx->velem_state);
    for (i = 0; i < 4; i++) {
       if (ctx->velem_state_readbuf[i]) {




More information about the mesa-commit mailing list