mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-10 09:21:35 -04:00
[MINOR] Free stick table pool on denint()
The motivation for this is that when soft-restart is merged it will be come more important to free all relevant memory in deinit() Discovered using valgrind.
This commit is contained in:
parent
ac8214260e
commit
b08584ac71
1 changed files with 1 additions and 0 deletions
|
|
@ -874,6 +874,7 @@ void deinit(void)
|
|||
pool_destroy2(p->req_cap_pool);
|
||||
pool_destroy2(p->rsp_cap_pool);
|
||||
pool_destroy2(p->hdr_idx_pool);
|
||||
pool_destroy2(p->table.pool);
|
||||
|
||||
p0 = p;
|
||||
p = p->next;
|
||||
|
|
|
|||
Loading…
Reference in a new issue