From: <the...@us...> - 2006-12-17 08:10:16
|
Revision: 18014 http://svn.sourceforge.net/gaim/?rev=18014&view=rev Author: thekingant Date: 2006-12-17 00:06:48 -0800 (Sun, 17 Dec 2006) Log Message: ----------- This started throwing an assertion failure for me recently Modified Paths: -------------- trunk/gtk/gtkblist.c Modified: trunk/gtk/gtkblist.c =================================================================== --- trunk/gtk/gtkblist.c 2006-12-17 05:38:48 UTC (rev 18013) +++ trunk/gtk/gtkblist.c 2006-12-17 08:06:48 UTC (rev 18014) @@ -6316,7 +6316,7 @@ GtkWidget *sortmenu; const char *m = gaim_prefs_get_string("/gaim/gtk/blist/sort_type"); - if (gtkblist == NULL) + if ((gtkblist == NULL) || (gtkblist->ift == NULL)) return; sortmenu = gtk_item_factory_get_widget(gtkblist->ift, N_("/Buddies/Sort Buddies")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |