aboutsummaryrefslogtreecommitdiffstats
path: root/main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch')
-rw-r--r--main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch19
1 files changed, 0 insertions, 19 deletions
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
deleted file mode 100644
index af3f7468be..0000000000
--- a/main/ipsec-tools/02-fix-xauth-double-free-on-reload.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- 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 */