projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
68c1756
)
tcplay(3): The 'ok' variable is only needed in #ifdef DEBUG.
author
Sascha Wildner <saw@online.de>
Tue, 16 Oct 2012 05:00:32 +0000 (07:00 +0200)
committer
Sascha Wildner <saw@online.de>
Tue, 16 Oct 2012 06:50:54 +0000 (08:50 +0200)
Found-by: gcc47
lib/libtcplay/safe_mem.c
patch
|
blob
|
blame
|
history
diff --git
a/lib/libtcplay/safe_mem.c
b/lib/libtcplay/safe_mem.c
index
225de15
..
0dad202
100644
(file)
--- a/
lib/libtcplay/safe_mem.c
+++ b/
lib/libtcplay/safe_mem.c
@@
-150,13
+150,16
@@
check_and_purge_safe_mem(void)
{
struct safe_mem_hdr *hdr;
char *mem;
- int __unused ok;
+#ifdef DEBUG
+ int ok;
+#endif
if (safe_mem_hdr_first == NULL)
return;
hdr = safe_mem_hdr_first;
while ((hdr = safe_mem_hdr_first) != NULL) {
+#ifdef DEBUG
if ((hdr->alloc_sz > 0) &&
(memcmp(hdr->sig, "SAFEMEM\0", 8) == 0) &&
(memcmp(hdr->tail->sig, "SAFEMEM\0", 8) == 0))
@@
-164,7
+167,6
@@
check_and_purge_safe_mem(void)
else
ok = 0;
-#ifdef DEBUG
fprintf(stderr, "un-freed safe_mem: %#lx (%s:%d) [integrity=%s]\n",
(unsigned long)(void *)hdr, hdr->file, hdr->line,
ok? "ok" : "failed");