diff options
author | markus@openbsd.org <markus@openbsd.org> | 2015-03-24 21:10:08 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-03-27 02:01:47 +0100 |
commit | 4daeb67181054f2a377677fac919ee8f9ed3490e (patch) | |
tree | 0d942da2c39f33f46282be8989e6963383aeffcb /packet.c | |
parent | upstream commit (diff) | |
download | openssh-4daeb67181054f2a377677fac919ee8f9ed3490e.tar.xz openssh-4daeb67181054f2a377677fac919ee8f9ed3490e.zip |
upstream commit
don't leak 'setp' on error; noted by Nicholas Lemonias;
ok djm@
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.209 2015/03/11 00:48:39 jsg Exp $ */ +/* $OpenBSD: packet.c,v 1.210 2015/03/24 20:10:08 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1279,10 +1279,8 @@ ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) * Since we are blocking, ensure that all written packets have * been sent. */ - if ((r = ssh_packet_write_wait(ssh)) != 0) { - free(setp); - return r; - } + if ((r = ssh_packet_write_wait(ssh)) != 0) + goto out; /* Stay in the loop until we have received a complete packet. */ for (;;) { @@ -1340,15 +1338,20 @@ ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) len = roaming_read(state->connection_in, buf, sizeof(buf), &cont); } while (len == 0 && cont); - if (len == 0) - return SSH_ERR_CONN_CLOSED; - if (len < 0) - return SSH_ERR_SYSTEM_ERROR; + if (len == 0) { + r = SSH_ERR_CONN_CLOSED; + goto out; + } + if (len < 0) { + r = SSH_ERR_SYSTEM_ERROR; + goto out; + } /* Append it to the buffer. */ if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0) - return r; + goto out; } + out: free(setp); return r; } |