commit 0b0f79d722c25dc127717eb805d8c6eaf2ca592d from: Stefan Sperling date: Tue Apr 01 11:06:50 2025 UTC do not forget to actually free the repo itself in gotsys_repo_free() commit - 388e7b970816daf27b983c96507e5a68ddf63ed7 commit + 0b0f79d722c25dc127717eb805d8c6eaf2ca592d blob - 2129c06e56a96b8817ac114cbe0ef6fe73bad07e blob + 4f83dff8806c61dfbf581ddad2bc5e74b275a967 --- lib/gotsys_conf.c +++ lib/gotsys_conf.c @@ -173,6 +173,8 @@ gotsys_repo_free(struct gotsys_repo *repo) STAILQ_REMOVE_HEAD(&repo->notification_targets, entry); gotsys_notification_target_free(target); } + + free(repo); } void