From ba39f71b2a8dfd155684df4b01f098039b68389e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Tue, 5 Feb 2013 13:41:25 +0200 Subject: main/ipsec-tools: cherry-pick fixes from upstream --- .../02-fix-xauth-double-free-on-reload.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch (limited to 'main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch') diff --git a/main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch b/main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch new file mode 100644 index 000000000..af3f7468b --- /dev/null +++ b/main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch @@ -0,0 +1,19 @@ +--- a/src/racoon/isakmp_xauth.c 15 Nov 2011 13:51:23 -0000 1.24 ++++ b/src/racoon/isakmp_xauth.c 5 Feb 2013 06:21:03 -0000 +@@ -458,10 +458,14 @@ + vfree(xauth_rad_config.acct_server_list[i].host); + vfree(xauth_rad_config.acct_server_list[i].secret); + } +- if (radius_auth_state != NULL) ++ if (radius_auth_state != NULL) { + rad_close(radius_auth_state); +- if (radius_acct_state != NULL) ++ radius_auth_state = NULL; ++ } ++ if (radius_acct_state != NULL) { + rad_close(radius_acct_state); ++ radius_acct_state = NULL; ++ } + } + + /* initialize radius config */ -- cgit v1.2.3