summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-11-13 20:34:10 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-11-17 12:29:13 +0900
commit1e35d92953207dd5e40be4954ccc9015913f7f06 (patch)
tree673aa9b6c9d544ef1bda0e0c7785a73c27cfd4c8 /src
parentc13cf0d69094bd586df16bb5cf1aa306f8923307 (diff)
gallium: State when there are no memory leaks detected.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/util/p_debug_mem.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/p_debug_mem.c b/src/gallium/auxiliary/util/p_debug_mem.c
index 9511479cbb..250fd60f63 100644
--- a/src/gallium/auxiliary/util/p_debug_mem.c
+++ b/src/gallium/auxiliary/util/p_debug_mem.c
@@ -265,6 +265,9 @@ debug_memory_end(unsigned long start_no)
size_t total_size = 0;
struct list_head *entry;
+ if(start_no == last_no)
+ return;
+
entry = list.prev;
for (; entry != &list; entry = entry->prev) {
struct debug_memory_header *hdr;
@@ -302,4 +305,7 @@ debug_memory_end(unsigned long start_no)
debug_printf("Total of %u KB of system memory apparently leaked\n",
(total_size + 1023)/1024);
}
+ else {
+ debug_printf("No memory leaks detected.\n");
+ }
}