mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
boundary limit check was wrong, we won't be able to match any of the listen sockets
svn path=/icecast/trunk/icecast/; revision=14030
This commit is contained in:
parent
a26bb50004
commit
27f58c1189
@ -1097,7 +1097,7 @@ listener_t *config_get_listen_sock (ice_config_t *config, connection_t *con)
|
||||
global_lock();
|
||||
while (listener)
|
||||
{
|
||||
if (i < global.server_sockets)
|
||||
if (i >= global.server_sockets)
|
||||
listener = NULL;
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user