# HG changeset patch # User nenolod # Date 1160037101 25200 # Node ID 0734a98088844e7c7aa9f48f6291ff87d34c0a33 # Parent 3b6901e8e63f5dda9315b78cd64b8bcd486cf634 [svn] - make sure the PlaylistEntry has a tuple. diff -r 3b6901e8e63f -r 0734a9808884 ChangeLog --- a/ChangeLog Wed Oct 04 23:45:55 2006 -0700 +++ b/ChangeLog Thu Oct 05 01:31:41 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 06:45:55 +0000 William Pitcock + revision [2589] + - missed a couple of properties, sorry + + trunk/audacious/widgets/skin.c | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + + 2006-10-05 06:36:28 +0000 William Pitcock revision [2587] - fix another typo diff -r 3b6901e8e63f -r 0734a9808884 audacious/playlist.c --- a/audacious/playlist.c Wed Oct 04 23:45:55 2006 -0700 +++ b/audacious/playlist.c Thu Oct 05 01:31:41 2006 -0700 @@ -2626,7 +2626,8 @@ entry->length = -1; /* invalidate mtime to reread */ - entry->tuple->mtime = 0; + if (entry->tuple != NULL) + entry->tuple->mtime = 0; if (!playlist_entry_get_info(entry)) { if (g_list_index(playlist_get(), entry) == -1)