summaryrefslogtreecommitdiffstats
path: root/sharpd/sharp_main.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sharpd/sharp_main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sharpd/sharp_main.c b/sharpd/sharp_main.c
index f4ce14797..2e72a4b99 100644
--- a/sharpd/sharp_main.c
+++ b/sharpd/sharp_main.c
@@ -65,9 +65,18 @@ static void sharp_global_init(void)
sg.srv6_locators = list_new();
}
+static void sharp_srv6_locators_list_delete(void *item)
+{
+ struct sharp_srv6_locator *loc = item;
+
+ list_delete(&loc->chunks);
+}
+
static void sharp_global_destroy(void)
{
list_delete(&sg.nhs);
+
+ sg.srv6_locators->del = sharp_srv6_locators_list_delete;
list_delete(&sg.srv6_locators);
}