aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client.c b/src/client.c
index c97b24b48..0585b0405 100644
--- a/src/client.c
+++ b/src/client.c
@@ -449,6 +449,9 @@ static int client_input_received(struct client *client, size_t bytesRead)
char *newline, *next;
int ret;
+ assert(client->bufferPos <= client->bufferLength);
+ assert(client->bufferLength + bytesRead <= sizeof(client->buffer));
+
client->bufferLength += bytesRead;
end = client->buffer + client->bufferLength;
@@ -501,6 +504,9 @@ static int client_read(struct client *client)
{
ssize_t bytesRead;
+ assert(client->bufferPos <= client->bufferLength);
+ assert(client->bufferLength < sizeof(client->buffer));
+
bytesRead = read(client->fd,
client->buffer + client->bufferLength,
CLIENT_MAX_BUFFER_LENGTH - client->bufferLength);