[openssh-commits] [openssh] 04/09: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Jan 15 01:48:34 AEDT 2016
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch V_7_1
in repository openssh.
commit d77148e3a3ef6c29b26ec74331455394581aa257
Author: djm at openbsd.org <djm at openbsd.org>
Date: Sun Nov 8 21:59:11 2015 +0000
upstream commit
fix OOB read in packet code caused by missing return
statement found by Ben Hawkes; ok markus@ deraadt@
Upstream-ID: a3e3a85434ebfa0690d4879091959591f30efc62
---
packet.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/packet.c b/packet.c
index 01d3e29..7b5c419 100644
--- a/packet.c
+++ b/packet.c
@@ -1581,6 +1581,7 @@ ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
logit("Bad packet length %u.", state->packlen);
if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
return r;
+ return SSH_ERR_CONN_CORRUPT;
}
sshbuf_reset(state->incoming_packet);
} else if (state->packlen == 0) {
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list