mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
[MINOR] Free rdp_cookie_name 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
5e55f5dadc
commit
a31c7f716b
1 changed files with 1 additions and 0 deletions
|
|
@ -697,6 +697,7 @@ void deinit(void)
|
|||
free(p->url_param_name);
|
||||
free(p->capture_name);
|
||||
free(p->monitor_uri);
|
||||
free(p->rdp_cookie_name);
|
||||
|
||||
for (i = 0; i < HTTP_ERR_SIZE; i++)
|
||||
chunk_destroy(&p->errmsg[i]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue