rfe2405993 - mem leak in cfg_file.y
This commit is contained in:
parent
60e41dd4ea
commit
cb03b8fa9a
@ -1,5 +1,6 @@
|
||||
3.0.3:
|
||||
rfe2149137 - makefile ignores LDFLAGS (sbk)
|
||||
rfe2405993 - mem leak in config parser (frY)
|
||||
|
||||
3.0.2:
|
||||
ref1685781 - vtun3 client should parse vtun2 server encr directives (hch)
|
||||
|
3
Credits
3
Credits
@ -143,3 +143,6 @@ Hans Carlos Hoffman <hchs.de>
|
||||
|
||||
Serge B. Khvatov <xbatob@users.sf.net>
|
||||
Makefile fix for LDFLAGS (rfe2149137)
|
||||
|
||||
Yasuyuki <fryasu@yahoo.co.jp>
|
||||
Mem leak in cfg_file.y (rfe2405993)
|
||||
|
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
/*
|
||||
* $Id: cfg_file.y,v 1.8.2.2 2008/01/07 22:35:22 mtbishop Exp $
|
||||
* $Id: cfg_file.y,v 1.8.2.3 2008/12/08 13:01:23 mtbishop Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@ -570,6 +570,12 @@ int free_host(void *d, void *u)
|
||||
|
||||
free_addr(h);
|
||||
|
||||
/* releases only host struct instances which were
|
||||
* allocated in the case of K_HOST except default_host */
|
||||
if( h->passwd )
|
||||
free(h);
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user