diff options
author | itojun <itojun> | 2001-04-04 03:45:14 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-04-04 03:45:14 +0000 |
commit | de4fce6276ca9ce1bb4c07cfd5340085d3f282d4 (patch) | |
tree | fd3884a2253ffa0b4aa8a1d632a016e1659082f7 | |
parent | 4bef459390092a1413a67d07351c86ffed738c14 (diff) | |
download | pkgsrc-de4fce6276ca9ce1bb4c07cfd5340085d3f282d4.tar.gz |
stability; do not free memory region twice.
openbsd sbin/isakmpd/x509.c 1.46 -> 1.47
-rw-r--r-- | security/isakmpd/files/patch-sum | 3 | ||||
-rw-r--r-- | security/isakmpd/patches/patch-ba | 18 |
2 files changed, 20 insertions, 1 deletions
diff --git a/security/isakmpd/files/patch-sum b/security/isakmpd/files/patch-sum index 8ae85f4e099..0656ba30b97 100644 --- a/security/isakmpd/files/patch-sum +++ b/security/isakmpd/files/patch-sum @@ -1,5 +1,6 @@ -$NetBSD: patch-sum,v 1.7 2001/04/03 13:06:28 itojun Exp $ +$NetBSD: patch-sum,v 1.8 2001/04/04 03:45:14 itojun Exp $ SHA1 (patch-aa) = d1616a16251ccd770c392e60057b357b7224d38a SHA1 (patch-ab) = f30c790f42d72866e95092848e102e4c3728365c SHA1 (patch-ac) = 3f36a2bfff793f55c79f67affe142a8807082e70 +SHA1 (patch-ba) = fe9f9eed9955eeb691fb48497cd303203d6ea5d2 diff --git a/security/isakmpd/patches/patch-ba b/security/isakmpd/patches/patch-ba new file mode 100644 index 00000000000..df1999ede55 --- /dev/null +++ b/security/isakmpd/patches/patch-ba @@ -0,0 +1,18 @@ +$NetBSD: patch-ba,v 1.1 2001/04/04 03:45:15 itojun Exp $ + +Index: x509.c +=================================================================== +RCS file: /cvs/src/sbin/isakmpd/x509.c,v +retrieving revision 1.46 +retrieving revision 1.47 +diff -u -r1.46 -r1.47 +--- x509.c 2001/03/27 16:50:35 1.46 ++++ x509.c 2001/04/03 13:59:12 1.47 +@@ -545,7 +545,6 @@ + return 0; + } + +- free (x509_policy_asserts); + x509_policy_asserts = new_asserts; + } + |