summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2001-04-03 13:56:11 +0000
committerstevesk <stevesk@openbsd.org>2001-04-03 13:56:11 +0000
commite2eb078d3769b9b00cbf1ed27da605a452285129 (patch)
tree8467f56998e1295f7cb9c74a899c2e154f295574 /usr.bin/ssh/ssh-agent.c
parentThe hsq driver is not i386-only. (diff)
downloadwireguard-openbsd-e2eb078d3769b9b00cbf1ed27da605a452285129.tar.xz
wireguard-openbsd-e2eb078d3769b9b00cbf1ed27da605a452285129.zip
free() -> xfree()
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r--usr.bin/ssh/ssh-agent.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c
index 92edcb407b1..3d6016aea15 100644
--- a/usr.bin/ssh/ssh-agent.c
+++ b/usr.bin/ssh/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.53 2001/03/26 23:23:24 markus Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.54 2001/04/03 13:56:11 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -37,7 +37,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-agent.c,v 1.53 2001/03/26 23:23:24 markus Exp $");
+RCSID("$OpenBSD: ssh-agent.c,v 1.54 2001/04/03 13:56:11 stevesk Exp $");
#include <openssl/evp.h>
#include <openssl/md5.h>
@@ -559,9 +559,9 @@ prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl)
sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
if (*fdrp == NULL || n > *fdl) {
if (*fdrp)
- free(*fdrp);
+ xfree(*fdrp);
if (*fdwp)
- free(*fdwp);
+ xfree(*fdwp);
*fdrp = xmalloc(sz);
*fdwp = xmalloc(sz);
*fdl = n;