1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Cleanup: Improved code formatting

This commit is contained in:
Philipp Schafft 2022-03-25 22:42:06 +00:00
parent 13a58cb49e
commit 334377fafb

View File

@ -689,12 +689,10 @@ static bool process_request_queue_one (client_queue_entry_t *node, time_t timeou
client_queue_add(&_connection_queue, node);
return true;
}
} else {
if (len == 0 || client->con->error) {
client_destroy(client);
free_client_node(node);
return true;
}
} else if (len == 0 || client->con->error) {
client_destroy(client);
free_client_node(node);
return true;
}
return false;