mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 13:38:06 +02:00
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@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@operamail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
7fd8dc3aa9
commit
2eafd07323
1 changed files with 1 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue