summaryrefslogtreecommitdiffstats
path: root/doval
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-06-04 07:23:20 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-06-04 07:23:20 +0000
commitf7a66767251bdbb0e727b636d8abb036c1a043b5 (patch)
tree4c8e90317e48b86d9aaffa5a7f2fcf09deee939f /doval
parent9712c4c6a0bd27e42d814941f8bb2eeff76e1758 (diff)
downloadopenvpn-f7a66767251bdbb0e727b636d8abb036c1a043b5.tar.gz
openvpn-f7a66767251bdbb0e727b636d8abb036c1a043b5.tar.xz
openvpn-f7a66767251bdbb0e727b636d8abb036c1a043b5.zip
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
Diffstat (limited to 'doval')
-rwxr-xr-xdoval2
1 files changed, 1 insertions, 1 deletions
diff --git a/doval b/doval
index 76e0811..af840ee 100755
--- a/doval
+++ b/doval
@@ -1,2 +1,2 @@
#!/bin/bash
-valgrind --tool=memcheck --error-limit=no --suppressions=debug/valgrind-suppress --gen-suppressions=all --leak-check=yes --num-callers=32 $*
+valgrind --tool=memcheck --error-limit=no --suppressions=debug/valgrind-suppress --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $*