mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 15:04:42 +00:00
BUG/MINOR: logs: free logsrv.conf.file on exit
Config information has been added into the logsrv struct. The filename is duplicated and should be freed on exit. Introduced in the current release. This does not need to be backported.
This commit is contained in:
parent
fb247946a1
commit
d688e01032
@ -2278,6 +2278,7 @@ void deinit(void)
|
||||
|
||||
list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
|
||||
LIST_DELETE(&log->list);
|
||||
free(log->conf.file);
|
||||
free(log);
|
||||
}
|
||||
list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
|
||||
|
Loading…
Reference in New Issue
Block a user