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.
diff --git a/src/haproxy.c b/src/haproxy.c
index 0e86586..7dc1e83 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -2278,6 +2278,7 @@
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) {