- 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:
Wouter Wijngaards 2017-06-13 07:10:58 +00:00
parent 5989d675ce
commit ca8d0a0e92
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,6 @@
13 June 2017: Wouter
- Fix #1279: Memory leak on reload when python module is enabled.
12 June 2017: Wouter
- Fix #1278: Incomplete wildcard proof.

View file

@ -1221,6 +1221,7 @@ config_delete(struct config_file* cfg)
free(cfg->version);
free(cfg->module_conf);
free(cfg->outgoing_avail_ports);
free(cfg->python_script);
config_delstrlist(cfg->caps_whitelist);
config_delstrlist(cfg->private_address);
config_delstrlist(cfg->private_domain);