summaryrefslogtreecommitdiff
path: root/epan/stats_tree.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-09-28 21:33:44 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-09-28 21:33:44 +0000
commit925dd72039f735106c388b1e9112a1f098d3f4b2 (patch)
treea4c73d35905e05a97088ccac854f96eecc1caccc /epan/stats_tree.c
parentc6ed07b117f951075a231bc9c1172c3c4c1f4507 (diff)
downloadwireshark-925dd72039f735106c388b1e9112a1f098d3f4b2.tar.gz
one leak less...
svn path=/trunk/; revision=16046
Diffstat (limited to 'epan/stats_tree.c')
-rw-r--r--epan/stats_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/stats_tree.c b/epan/stats_tree.c
index 7ef1c7e001..f3eca97037 100644
--- a/epan/stats_tree.c
+++ b/epan/stats_tree.c
@@ -174,7 +174,7 @@ extern void stats_tree_free(stats_tree* st) {
g_free(st->filter);
g_hash_table_destroy(st->names);
- g_ptr_array_free(st->parents,FALSE);
+ g_ptr_array_free(st->parents,TRUE);
for (child = st->root.children; child; child = next ) {
/* child->next will be gone after free_stat_node, so cache it here */