neels has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-hlr/+/30981
)
Change subject: fix memleak of proxy_subscr_listentry
......................................................................
fix memleak of proxy_subscr_listentry
Patch-by: whytek
Related: OS#5854
Change-Id: Ic1ec4911fa5ae91cc75aa865c8201edd83af41ed
---
M src/proxy.c
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/81/30981/1
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_del(struct proxy_subscr_listentry *e)
{
llist_del(&e->entry);
+ talloc_free(e);
return 0;
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-hlr/+/30981
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Change-Id: Ic1ec4911fa5ae91cc75aa865c8201edd83af41ed
Gerrit-Change-Number: 30981
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-MessageType: newchange