client: added assertions on the buffer pointers
The buffer pointers must not exceed the buffer size.
This commit is contained in:
@@ -449,6 +449,9 @@ static int client_input_received(struct client *client, size_t bytesRead)
|
|||||||
char *newline, *next;
|
char *newline, *next;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
assert(client->bufferPos <= client->bufferLength);
|
||||||
|
assert(client->bufferLength + bytesRead <= sizeof(client->buffer));
|
||||||
|
|
||||||
client->bufferLength += bytesRead;
|
client->bufferLength += bytesRead;
|
||||||
end = client->buffer + client->bufferLength;
|
end = client->buffer + client->bufferLength;
|
||||||
|
|
||||||
@@ -501,6 +504,9 @@ static int client_read(struct client *client)
|
|||||||
{
|
{
|
||||||
ssize_t bytesRead;
|
ssize_t bytesRead;
|
||||||
|
|
||||||
|
assert(client->bufferPos <= client->bufferLength);
|
||||||
|
assert(client->bufferLength < sizeof(client->buffer));
|
||||||
|
|
||||||
bytesRead = read(client->fd,
|
bytesRead = read(client->fd,
|
||||||
client->buffer + client->bufferLength,
|
client->buffer + client->bufferLength,
|
||||||
CLIENT_MAX_BUFFER_LENGTH - client->bufferLength);
|
CLIENT_MAX_BUFFER_LENGTH - client->bufferLength);
|
||||||
|
Reference in New Issue
Block a user