[vpnc-devel] svn commit: vpnc r427 - /branches/vpnc-nortel/vpnc.c

vpnc at unix-ag.uni-kl.de vpnc at unix-ag.uni-kl.de
Sat Sep 5 19:52:46 CEST 2009


Author: Antonio Borneo
Date: Sat Sep  5 19:52:45 2009
New Revision: 427

Log:
Merge in Nortel branch the commit r366 by Joerg Mayer.
Original comment:
Get rid of a segfault due to a double free (and reintroduce a memleak)

Modified:
    branches/vpnc-nortel/vpnc.c

Modified: branches/vpnc-nortel/vpnc.c
==============================================================================
--- branches/vpnc-nortel/vpnc.c (original)
+++ branches/vpnc-nortel/vpnc.c Sat Sep  5 19:52:45 2009
@@ -3719,7 +3719,8 @@
 		r->payload->next->type == ISAKMP_PAYLOAD_SA) {
 		reject = do_rekey(s, r);
 		DEBUG(3, printf("do_rekey returned: %d\n", reject));
-		free_isakmp_packet(r);
+		/* FIXME: LEAK but will create segfault for double free */
+		/* free_isakmp_packet(r); */
 		return;
 	}
 



More information about the vpnc-devel mailing list