summaryrefslogtreecommitdiffstats
path: root/CommandLine.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2021-09-03 12:11:31 +1000
committerBenBE <BenBE@geshi.org>2021-09-03 09:47:01 +0200
commitc0c2bb98a23b649c55e5d8a55395073fdaa8d6fa (patch)
tree5d568468338201447d1396843e761d33c6729b37 /CommandLine.c
parent9b30870eeca0e2fd29602451205834d753ed5905 (diff)
Add completion handling for dynamic meters and columns
Be sure to free dynamic memory allocated for meters and columns strings, no-op on platforms other than pcp. Closes #774
Diffstat (limited to 'CommandLine.c')
-rw-r--r--CommandLine.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/CommandLine.c b/CommandLine.c
index ecfc731e..f0d22557 100644
--- a/CommandLine.c
+++ b/CommandLine.c
@@ -393,10 +393,8 @@ int CommandLine_run(const char* name, int argc, char** argv) {
/* Delete these last, since they can get accessed in the crash handler */
Settings_delete(settings);
- if (dc)
- Hashtable_delete(dc);
- if (dm)
- Hashtable_delete(dm);
+ DynamicColumns_delete(dc);
+ DynamicMeters_delete(dm);
return 0;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy