mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: deinit: fix memory leak
deinit() did not free the conf.file member of server objects.
This commit is contained in:
parent
9dc1c61c43
commit
34c0179464
1 changed files with 1 additions and 0 deletions
|
|
@ -1175,6 +1175,7 @@ void deinit(void)
|
|||
free(s->check.bo);
|
||||
free(s->agent.bi);
|
||||
free(s->agent.bo);
|
||||
free((char*)s->conf.file);
|
||||
free(s);
|
||||
s = s_next;
|
||||
}/* end while(s) */
|
||||
|
|
|
|||
Loading…
Reference in a new issue