pike.git/
src/
las.c
Branch:
Tag:
Non-build tags
All tags
No tags
2013-10-10
2013-10-10 14:54:16 by Arne Goedeke <el@laramies.com>
28daf265bc651f44dd1c157e901bd1edc205b3b0 (
9
lines) (+
7
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
block_allocator: fixed --with-debug
534:
#endif ba_walk(&Pike_compiler->node_allocator, &node_walker, NULL); #ifdef PIKE_DEBUG
-
if(!cumulative_parse_error)
-
Pike_fatal("Failed to free %"PRINTSIZET"d nodes when compiling!\n",
e
);
+
if(!cumulative_parse_error)
{
+
size_t n, s;
+
ba_count_all(&
Pike_
compiler->node_allocator, &n, &s);
+
if (n)
+
Pike_
fatal("Failed to free %"PRINTSIZET"d nodes when compiling!\n",
n
);
+
}
#else } #endif