From 097760db178ab2033692e4c782cf0f3a06065803 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 14 Nov 2013 11:42:21 +0100 Subject: packet: Set the packet to the processed data position. Else we could end up with packet - current_macsize if to_be_read is 0. --- src/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packet.c b/src/packet.c index 089a2a6..c6c30bd 100644 --- a/src/packet.c +++ b/src/packet.c @@ -263,7 +263,7 @@ int ssh_packet_socket_callback(const void *data, size_t receivedlen, void *user) } /* copy the last part from the incoming buffer */ - packet = packet + to_be_read - current_macsize; + packet = ((uint8_t *)data) + processed; if (packet == NULL) { goto error; } -- cgit