Skip to content

Commit

Permalink
Avoid applying an offset to a null pointer (#3347)
Browse files Browse the repository at this point in the history
  • Loading branch information
atoppi committed Mar 27, 2024
1 parent 85f781d commit 2fba0cf
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions src/transports/janus_websockets.c
Expand Up @@ -1351,12 +1351,14 @@ static int janus_websockets_common_callback(
while (incoming_curr < incoming_end && isspace(*incoming_curr))
incoming_curr++;
if(incoming_curr == incoming_end) {
/* Process messages in order */
json_t **msg = message_buffer;
json_t **msg_end = message_buffer + message_buffer_count;
while(msg != msg_end) {
/* Notify the core, no error since we know there weren't any */
gateway->incoming_request(&janus_websockets_transport, ws_client->ts, NULL, admin, *msg++, NULL);
if(message_buffer != NULL) {
/* Process messages in order */
json_t **msg = message_buffer;
json_t **msg_end = message_buffer + message_buffer_count;
while(msg != msg_end) {
/* Notify the core, no error since we know there weren't any */
gateway->incoming_request(&janus_websockets_transport, ws_client->ts, NULL, admin, *msg++, NULL);
}
}
/* Notify the core, no error since we know there weren't any */
gateway->incoming_request(&janus_websockets_transport, ws_client->ts, NULL, admin, message, NULL);
Expand All @@ -1367,11 +1369,13 @@ static int janus_websockets_common_callback(
message_buffer[message_buffer_count++] = message;
}
} else {
/* Release any buffered messages */
json_t **msg = message_buffer;
json_t **msg_end = message_buffer + message_buffer_count;
while(msg != msg_end) {
json_decref(*msg++);
if(message_buffer != NULL) {
/* Release any buffered messages */
json_t **msg = message_buffer;
json_t **msg_end = message_buffer + message_buffer_count;
while(msg != msg_end) {
json_decref(*msg++);
}
}
/* Notify the core, passing the error since we have no message */
gateway->incoming_request(&janus_websockets_transport, ws_client->ts, NULL, admin, NULL, &error);
Expand Down

0 comments on commit 2fba0cf

Please sign in to comment.