Mercurial > audlegacy
changeset 1364:18a6a71b8c15 trunk
[svn] - No more cdaudio crashy.
author | nhjm449 |
---|---|
date | Sat, 01 Jul 2006 04:01:26 -0700 |
parents | 5171f489bace |
children | 97000f8de201 |
files | ChangeLog Plugins/Input/cdaudio/cdaudio.c |
diffstat | 2 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Jul 01 03:11:13 2006 -0700 +++ b/ChangeLog Sat Jul 01 04:01:26 2006 -0700 @@ -1,3 +1,12 @@ +2006-07-01 10:11:13 +0000 William Pitcock <nenolod@nenolod.net> + revision [1638] + - fix the skinwin realisation bug + + + Changes: Modified: + +0 -2 trunk/audacious/prefswin.c + + 2006-06-30 11:18:20 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [1636] - use of sleep() or usleep() in multi-thread program may cause 100% CPU usage because of signal distribution.
--- a/Plugins/Input/cdaudio/cdaudio.c Sat Jul 01 03:11:13 2006 -0700 +++ b/Plugins/Input/cdaudio/cdaudio.c Sat Jul 01 04:01:26 2006 -0700 @@ -1059,13 +1059,14 @@ tuple->album_name = g_strdup(album_name); tuple->track_name = g_strdup(track_name); tuple->track_number = (track); - tuple->file_name = tuple->file_path = - g_strdup_printf(_("CD Audio Track %02u"), track); + tuple->file_name = g_strdup(tuple->file_path); + tuple->file_path = g_strdup_printf(_("CD Audio Track %02u"), track); tuple->file_ext = "cda"; tuple->length = ((cdda_calculate_track_length(toc, track) * 1000) / 75); if (!tuple->track_name) tuple->track_name = g_strdup_printf(_("CD Audio Track %02u"), track); + return tuple; }