From 8804a2335a1cab221880befb2401192fc709f4ef Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Sun, 15 Jan 2023 22:45:20 +0100 Subject: fix memleak of proxy_subscr_listentry Patch-by: whytek Related: OS#5854 Change-Id: Ic1ec4911fa5ae91cc75aa865c8201edd83af41ed --- src/proxy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proxy.c b/src/proxy.c index 1ae152c..152fce8 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -190,6 +190,7 @@ int proxy_subscr_create_or_update(struct proxy *proxy, const struct proxy_subscr int _proxy_subscr_del(struct proxy_subscr_listentry *e) { llist_del(&e->entry); + talloc_free(e); return 0; } -- cgit v1.2.3