Displaying 1 result from an estimated 1 matches for "auth_remove_listener".
2010 Apr 05
0
Bug in icecast 2.3.2 (not in stable release but a little later and in trunk) : Null pointer in auth_remove_listener
...ersion 2.3.2 (not the the
released code but a version that was taken from a tag
icecast2-svn-20090324.tar.gz) and it looks that it also affects the last
version in the trunk.
We studied a core dump generated by icecast.
We found that the crash occurred in the following icecast code:
static void auth_remove_listener (auth_t *auth, auth_client *auth_user)
{
client_t *client = auth_user->client;
if (client->auth->release_listener)
client->auth->release_listener (auth_user);
auth_release (client->auth);
client->auth = NULL;
/* client is going, so auth is not an i...