1
0
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:
Karl Heyes 2005-06-27 02:10:16 +00:00
parent 2ecaecbf7f
commit efd3692202

View File

@ -100,7 +100,7 @@ static void find_client_start (source_t *source, client_t *client)
{
long size = 0;
refbuf = source->burst_point;
size = source->burst_size - client->intro_offset;
size = client->intro_offset;
while (size > 0 && refbuf->next)
{
size -= refbuf->len;