Mercurial > audlegacy-plugins
changeset 743:6ec1a12cbf0c trunk
[svn] - fix a crash reported by grufti.
author | nenolod |
---|---|
date | Tue, 27 Feb 2007 06:41:02 -0800 |
parents | 2804b98b09b9 |
children | c380f078aa26 |
files | ChangeLog src/wav/wav.c |
diffstat | 2 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Feb 27 05:43:10 2007 -0800 +++ b/ChangeLog Tue Feb 27 06:41:02 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-27 13:43:10 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [1582] + - fix icecast2, i think. + + trunk/src/curl/curl.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-02-27 13:40:42 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [1580] - add metadata key "content-length", which allows for getting a content length.
--- a/src/wav/wav.c Tue Feb 27 05:43:10 2007 -0800 +++ b/src/wav/wav.c Tue Feb 27 06:41:02 2007 -0800 @@ -424,7 +424,7 @@ wav_file->samples_per_sec, wav_file->channels); g_free(name); wav_file->seek_to = -1; - decode_thread = g_thread_create(play_loop, NULL, TRUE, NULL); + decode_thread = g_thread_create(play_loop, playback, TRUE, NULL); } }