]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- markus@cvs.openbsd.org 2001/10/04 14:34:16
authorDamien Miller <djm@mindrot.org>
Wed, 10 Oct 2001 05:00:49 +0000 (15:00 +1000)
committerDamien Miller <djm@mindrot.org>
Wed, 10 Oct 2001 05:00:49 +0000 (15:00 +1000)
     [key.c]
     call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com

ChangeLog
key.c

index 2064abf25ca19669022d0808daf56fe490b738c9..9c8dc92bba4a6299737c56445729dc5fd040ea0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20011010
+ - (djm) OpenBSD CVS Sync
+   - markus@cvs.openbsd.org 2001/10/04 14:34:16
+     [key.c]
+     call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com
+
 20011007
  - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
    Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> 
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.1584 2001/10/08 01:54:24 mouring Exp $
+$Id: ChangeLog,v 1.1585 2001/10/10 05:00:49 djm Exp $
diff --git a/key.c b/key.c
index 5c711b9d79745da2010cbf22f7b4f02b23c6a728..57df5b93aef7ae9015572cf93dcb89eaf0e1d29b 100644 (file)
--- a/key.c
+++ b/key.c
@@ -32,7 +32,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 #include "includes.h"
-RCSID("$OpenBSD: key.c,v 1.32 2001/09/19 13:23:29 markus Exp $");
+RCSID("$OpenBSD: key.c,v 1.33 2001/10/04 14:34:16 markus Exp $");
 
 #include <openssl/evp.h>
 
@@ -354,7 +354,7 @@ write_bignum(FILE *f, BIGNUM *num)
                return 0;
        }
        fprintf(f, " %s", buf);
-       xfree(buf);
+       OPENSSL_free(buf);
        return 1;
 }