search for: intro_offset

Displaying 4 results from an estimated 4 matches for "intro_offset".

Did you mean: entry_offset
2005 Jul 29
2
Icecast dies
...he state of the listener is in at the time. It will be hard to tell from the core, as some changes to the client have been made by the time the core occurs. anyway, try the following in source.c line 359 change if (source->client->con == NULL) client->intro_offset = -1; to if (source->client && source->client->con == NULL) client->intro_offset = -1; make debug install re-run test, let me know just in case it's not the only problem your seeing. karl. Ricardo Meechan IT Administrator Mobil...
2006 Jul 22
1
Possible Minor bug found in current 2.3.1 release of icecast2
...ig/src/format.c icecast-2.3.1/src/format.c --- icecast-2.3.1.orig/src/format.c 2006-07-23 00:48:16.418444051 -0400 +++ icecast-2.3.1/src/format.c 2006-07-20 22:38:30.000000000 -0400 @@ -101,7 +101,7 @@ long size = 0; refbuf = source->burst_point; size = client->intro_offset; - while ((size > 0) && refbuf->next) + while ((size > 0) && (refbuf != NULL) && refbuf->next) { size -= refbuf->len; refbuf = refbuf->next; This fixed the segfaulting issue for me, wanted to send it to the...
2005 Jul 29
0
Icecast dies
...time. It will be >hard to tell from the core, as some changes to the client have been made >by the time the core occurs. > >anyway, try the following > >in source.c line 359 change > > if (source->client->con == NULL) > client->intro_offset = -1; to > if (source->client && source->client->con == NULL) > client->intro_offset = -1; > >make debug install > >re-run test, let me know just in case it's not the only problem your >seeing. > >karl. > >...
2005 Aug 01
2
Icecast dies
...me. It will be >hard to tell from the core, as some changes to the client have been >made by the time the core occurs. > >anyway, try the following > >in source.c line 359 change > > if (source->client->con == NULL) > client->intro_offset = -1; to > if (source->client && source->client->con == NULL) > client->intro_offset = -1; > >make debug install > >re-run test, let me know just in case it's not the only problem your >seeing. > >karl. > &gt...