From f7a66767251bdbb0e727b636d8abb036c1a043b5 Mon Sep 17 00:00:00 2001 From: james Date: Wed, 4 Jun 2008 07:23:20 +0000 Subject: Fixed unbounded memory growth bug in environmental variable code that could have caused long-running OpenVPN sessions with many TLS renegotiations to incrementally increase memory usage over time. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2981 e7ae566f-a301-0410-adde-c780ea21d3b5 --- openvpn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'openvpn.c') diff --git a/openvpn.c b/openvpn.c index d3c36f9..f1bf169 100644 --- a/openvpn.c +++ b/openvpn.c @@ -130,7 +130,7 @@ main (int argc, char *argv[]) gc_init (&c.gc); /* initialize environmental variable store */ - c.es = env_set_create (&c.gc); + c.es = env_set_create (NULL); #ifdef ENABLE_MANAGEMENT /* initialize management subsystem */ @@ -233,6 +233,8 @@ main (int argc, char *argv[]) context_gc_free (&c); + env_set_destroy (c.es); + #ifdef ENABLE_MANAGEMENT /* close management interface */ close_management (); -- cgit