aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stats_tree.c
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-28 21:33:44 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-28 21:33:44 +0000
commit1defb8ef504e12118aef0f3286a6715a57138ad1 (patch)
treea4c73d35905e05a97088ccac854f96eecc1caccc /epan/stats_tree.c
parent08c488a80f060c4207ad3ebb267489002496adaa (diff)
one leak less...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16046 f5534014-38df-0310-8fa8-9805f1628bb7
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 */