# HG changeset patch # User nenolod # Date 1159897157 25200 # Node ID 630cdcaad7deb0d370c8247c82bd3e269d32fe91 # Parent 80955c196e111cf92763eda7c64218ee4a87a7e8 [svn] - that should be a lowercase p, not an uppercase one. diff -r 80955c196e11 -r 630cdcaad7de ChangeLog --- a/ChangeLog Mon Oct 02 18:46:02 2006 -0700 +++ b/ChangeLog Tue Oct 03 10:39:17 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-03 01:46:02 +0000 William Pitcock + revision [2477] + - fix a potential crash when running audacious remotely + + trunk/audacious/widgets/playlist_list.c | 10 ++++++++-- + 1 file changed, 8 insertions(+), 2 deletions(-) + + 2006-10-02 10:35:09 +0000 William Pitcock revision [2475] - parse equals correctly. diff -r 80955c196e11 -r 630cdcaad7de audacious/widgets/playlist_list.c --- a/audacious/widgets/playlist_list.c Mon Oct 02 18:46:02 2006 -0700 +++ b/audacious/widgets/playlist_list.c Tue Oct 03 10:39:17 2006 -0700 @@ -103,7 +103,7 @@ if (in == NULL) return; - P = gdk_pixmap_new(in, w, h, -1); + p = gdk_pixmap_new(in, w, h, -1); gc = gdk_gc_new(p); gdk_draw_pixmap(p, gc, in, x, y, 0, 0, w, h);