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

ChangeLog
key.c

index 03233f20de5df5cb4fb29ec05b788cbcb7c649dc..44fa7eb5a83b455905737c2c70b5b5e2db6c5ae3 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> 
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;
 }
 
This page took 1.706028 seconds and 5 git commands to generate.