summaryrefslogtreecommitdiff
path: root/src/core/core.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-11-06 08:06:09 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-11-06 08:06:09 (GMT)
commit46b89f3a88b764eed43755f4b431a929291f2ef8 (patch)
tree2234f32f725f4229cec698bfd63f519efdafb246 /src/core/core.c
parent72023cf93c4a2b27d4a6ed894e7e4f0f586cfc14 (diff)
Fix newly detected memory leaks.
Diffstat (limited to 'src/core/core.c')
-rw-r--r--src/core/core.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/core.c b/src/core/core.c
index 0fa2c74..7e48662 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -44,7 +44,6 @@
#include "../common/io.h"
#include "../common/xdg.h"
#include "../glibext/linesegment.h"
-#include "../plugins/dt.h"
@@ -123,8 +122,6 @@ bool load_all_core_components(bool cs)
register_arch_gtypes();
init_operands_factory();
- if (result) result = init_chrysalide_dynamic_types();
-
}
}
@@ -150,10 +147,10 @@ void unload_all_core_components(bool cs)
{
if (cs)
{
- exit_chrysalide_dynamic_types();
-
exit_operands_factory();
+ exit_segment_content_hash_table();
+
unload_demanglers_definitions();
unload_processors_definitions();