Mesa (master): gallivm: Close a memory leak

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Dec 22 23:03:33 UTC 2011


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

Author: Lauri Kasanen <cand at gmx.com>
Date:   Thu Dec 22 21:34:39 2011 +0200

gallivm: Close a memory leak

Hi all

This fixes a memory leak of 32 bytes on exit.

>From 924f8fdccb41b011f372bc57252005bcdb096105 Mon Sep 17 00:00:00 2001
From: Lauri Kasanen <curaga at operamail.com>
Date: Thu, 22 Dec 2011 21:28:33 +0200
Subject: [PATCH] gallivm: Close a memory leak

As reported by "valgrind --leak-check=full glxgears".

Signed-off-by: Lauri Kasanen <curaga at operamail.com>
Signed-off-by: José Fonseca <jfonseca at vmware.com>

---

 src/gallium/auxiliary/gallivm/lp_bld_init.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c
index 45addee..503c04e 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_init.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c
@@ -345,6 +345,7 @@ gallivm_remove_garbage_collector_callback(garbage_collect_callback_func func,
       if (cb->func == func && cb->cb_data == cb_data) {
          /* found, remove it */
          remove_from_list(cb);
+         FREE(cb);
          return;
       }
    }




More information about the mesa-commit mailing list