[auth2-none.c monitor.c sftp-client.c]
     use xfree()
This commit is contained in:
Ben Lindstrom 2002-07-04 00:06:15 +00:00
parent 35a2cb9b41
commit eec16fcb27
4 changed files with 10 additions and 7 deletions

View File

@ -9,6 +9,9 @@
- deraadt@cvs.openbsd.org 2002/06/27 09:08:00 - deraadt@cvs.openbsd.org 2002/06/27 09:08:00
[monitor.c] [monitor.c]
improve mm_zalloc check; markus ok improve mm_zalloc check; markus ok
- deraadt@cvs.openbsd.org 2002/06/27 10:35:47
[auth2-none.c monitor.c sftp-client.c]
use xfree()
20020702 20020702
- (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc &
@ -1217,4 +1220,4 @@
- (stevesk) entropy.c: typo in debug message - (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@ - (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2317 2002/07/04 00:05:06 mouring Exp $ $Id: ChangeLog,v 1.2318 2002/07/04 00:06:15 mouring Exp $

View File

@ -23,7 +23,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: auth2-none.c,v 1.3 2002/06/19 00:27:55 deraadt Exp $"); RCSID("$OpenBSD: auth2-none.c,v 1.4 2002/06/27 10:35:47 deraadt Exp $");
#include "auth.h" #include "auth.h"
#include "xmalloc.h" #include "xmalloc.h"
@ -61,7 +61,7 @@ auth2_read_banner(void)
close(fd); close(fd);
if (n != len) { if (n != len) {
free(banner); xfree(banner);
return (NULL); return (NULL);
} }
banner[n] = '\0'; banner[n] = '\0';

View File

@ -25,7 +25,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: monitor.c,v 1.20 2002/06/27 09:08:00 deraadt Exp $"); RCSID("$OpenBSD: monitor.c,v 1.21 2002/06/27 10:35:47 deraadt Exp $");
#include <openssl/dh.h> #include <openssl/dh.h>
@ -559,7 +559,7 @@ int mm_answer_auth2_read_banner(int socket, Buffer *m)
mm_request_send(socket, MONITOR_ANS_AUTH2_READ_BANNER, m); mm_request_send(socket, MONITOR_ANS_AUTH2_READ_BANNER, m);
if (banner != NULL) if (banner != NULL)
free(banner); xfree(banner);
return (0); return (0);
} }

View File

@ -28,7 +28,7 @@
/* XXX: copy between two remote sites */ /* XXX: copy between two remote sites */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: sftp-client.c,v 1.33 2002/06/23 09:30:14 deraadt Exp $"); RCSID("$OpenBSD: sftp-client.c,v 1.34 2002/06/27 10:35:47 deraadt Exp $");
#include "openbsd-compat/fake-queue.h" #include "openbsd-compat/fake-queue.h"
@ -1095,7 +1095,7 @@ do_upload(struct sftp_conn *conn, char *local_path, char *remote_path,
debug3("In write loop, ack for %u %u bytes at %llu", debug3("In write loop, ack for %u %u bytes at %llu",
ack->id, ack->len, (unsigned long long)ack->offset); ack->id, ack->len, (unsigned long long)ack->offset);
++ackid; ++ackid;
free(ack); xfree(ack);
} }
offset += len; offset += len;
} }