[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:
Simon Horman 2011-07-15 13:14:10 +09:00 committed by Willy Tarreau
parent ac8214260e
commit b08584ac71

View File

@ -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;