Module: kamailio Branch: 5.2 Commit: 643faf56274d6432b9884a062a669d0920d04bd4 URL: https://github.com/kamailio/kamailio/commit/643faf56274d6432b9884a062a669d09...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2019-08-09T11:23:45+02:00
domain: fix memory leak on domain reload (related to domain_attr table, struct domain_list)
- fix memory leak on domain reload, reported by Mack Hendricks - related to domain_attr table, structure domain_list
(cherry picked from commit f50177003c21f53564be6349c0bb4935be184e2d)
---
Modified: src/modules/domain/hash.c
---
Diff: https://github.com/kamailio/kamailio/commit/643faf56274d6432b9884a062a669d09... Patch: https://github.com/kamailio/kamailio/commit/643faf56274d6432b9884a062a669d09...
---
diff --git a/src/modules/domain/hash.c b/src/modules/domain/hash.c index 257d374dba..b093dbc3e4 100644 --- a/src/modules/domain/hash.c +++ b/src/modules/domain/hash.c @@ -204,6 +204,7 @@ void hash_table_free(struct domain_list **hash_table) shm_free(ap); ap = next_ap; } + shm_free(np); np = np->next; }