fix memleak of proxy_subscr_listentry

Patch-by: whytek
Related: OS#5854
Change-Id: Ic1ec4911fa5ae91cc75aa865c8201edd83af41ed
changes/81/30981/1
Neels Hofmeyr 2023-01-15 22:45:20 +01:00
parent c27bc90ae6
commit 8804a2335a
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}