From efd369220207cced56314380edfe080c017c0c27 Mon Sep 17 00:00:00 2001 From: Karl Heyes Date: Mon, 27 Jun 2005 02:10:16 +0000 Subject: [PATCH] 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 --- src/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format.c b/src/format.c index d41dfcc9..bae9fccd 100644 --- a/src/format.c +++ b/src/format.c @@ -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;