diff options
author | 2001-01-22 16:55:21 +0000 | |
---|---|---|
committer | 2001-01-22 16:55:21 +0000 | |
commit | e0a9c886d4518121e22638c0547ebe5a886b2bfd (patch) | |
tree | fc44a21569191094b03ed04c91a7859bfa68ba55 /usr.bin/ssh/key.c | |
parent | rdsetroot for elf. (diff) | |
download | wireguard-openbsd-e0a9c886d4518121e22638c0547ebe5a886b2bfd.tar.xz wireguard-openbsd-e0a9c886d4518121e22638c0547ebe5a886b2bfd.zip |
free() -> xfree(); ok markus@
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index a2306fed661..8cecce0177f 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/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.15 2001/01/21 19:05:50 markus Exp $"); +RCSID("$OpenBSD: key.c,v 1.16 2001/01/22 16:55:21 stevesk Exp $"); #include <openssl/evp.h> @@ -258,7 +258,7 @@ write_bignum(FILE *f, BIGNUM *num) return 0; } fprintf(f, " %s", buf); - free(buf); + xfree(buf); return 1; } |