mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
merge fix, the per client intro offset can be > 0, so we need to skip over
some of the burst data svn path=/icecast/trunk/icecast/; revision=9514
This commit is contained in:
parent
2ecaecbf7f
commit
efd3692202
@ -100,7 +100,7 @@ static void find_client_start (source_t *source, client_t *client)
|
|||||||
{
|
{
|
||||||
long size = 0;
|
long size = 0;
|
||||||
refbuf = source->burst_point;
|
refbuf = source->burst_point;
|
||||||
size = source->burst_size - client->intro_offset;
|
size = client->intro_offset;
|
||||||
while (size > 0 && refbuf->next)
|
while (size > 0 && refbuf->next)
|
||||||
{
|
{
|
||||||
size -= refbuf->len;
|
size -= refbuf->len;
|
||||||
|
Loading…
Reference in New Issue
Block a user