# HG changeset patch # User nenolod # Date 1159839962 25200 # Node ID 80955c196e111cf92763eda7c64218ee4a87a7e8 # Parent 8a926dec916f5f597127d5c990e7cb055fa773fa [svn] - fix a potential crash when running audacious remotely diff -r 8a926dec916f -r 80955c196e11 ChangeLog --- a/ChangeLog Mon Oct 02 03:35:09 2006 -0700 +++ b/ChangeLog Mon Oct 02 18:46:02 2006 -0700 @@ -1,3 +1,12 @@ +2006-10-02 10:35:09 +0000 William Pitcock + revision [2475] + - parse equals correctly. + Patch submitted by: TiCPU. + + trunk/libaudacious/rcfile.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-10-02 08:56:53 +0000 William Pitcock revision [2473] - remove some old debugging notices diff -r 8a926dec916f -r 80955c196e11 audacious/widgets/playlist_list.c --- a/audacious/widgets/playlist_list.c Mon Oct 02 03:35:09 2006 -0700 +++ b/audacious/widgets/playlist_list.c Mon Oct 02 18:46:02 2006 -0700 @@ -97,8 +97,14 @@ shade_pixmap(GdkPixmap *in, gint x, gint y, gint x_offset, gint y_offset, gint w, gint h, GdkColor *shade_color) { GdkImage *ximg; - GdkPixmap *p = gdk_pixmap_new(in, w, h, -1); - GdkGC *gc = gdk_gc_new(p); + GdkPixmap *p; + GdkGC *gc; + + if (in == NULL) + return; + + 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);