mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix #1279: Memory leak on reload when python module is enabled.
git-svn-id: file:///svn/unbound/trunk@4220 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
5989d675ce
commit
ca8d0a0e92
2 changed files with 4 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
13 June 2017: Wouter
|
||||||
|
- Fix #1279: Memory leak on reload when python module is enabled.
|
||||||
|
|
||||||
12 June 2017: Wouter
|
12 June 2017: Wouter
|
||||||
- Fix #1278: Incomplete wildcard proof.
|
- Fix #1278: Incomplete wildcard proof.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1221,6 +1221,7 @@ config_delete(struct config_file* cfg)
|
||||||
free(cfg->version);
|
free(cfg->version);
|
||||||
free(cfg->module_conf);
|
free(cfg->module_conf);
|
||||||
free(cfg->outgoing_avail_ports);
|
free(cfg->outgoing_avail_ports);
|
||||||
|
free(cfg->python_script);
|
||||||
config_delstrlist(cfg->caps_whitelist);
|
config_delstrlist(cfg->caps_whitelist);
|
||||||
config_delstrlist(cfg->private_address);
|
config_delstrlist(cfg->private_address);
|
||||||
config_delstrlist(cfg->private_domain);
|
config_delstrlist(cfg->private_domain);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue