From: Mark D. <the...@us...> - 2003-10-29 06:39:53
|
Update of /cvsroot/gaim/gaim/src In directory sc8-pr-cvs1:/tmp/cvs-serv19815/src Modified Files: dialogs.c Log Message: This fixes the crash in http://sourceforge.net/tracker/?func=detail&aid=830837&group_id=235&atid=100235 It still doesn't clear the sytem log, but I'm not cool enough for that anyway. Index: dialogs.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/dialogs.c,v retrieving revision 1.552 retrieving revision 1.553 diff -u -d -p -r1.552 -r1.553 --- dialogs.c 25 Oct 2003 21:08:57 -0000 1.552 +++ dialogs.c 29 Oct 2003 04:20:22 -0000 1.553 @@ -1976,7 +1976,7 @@ static void show_clear_log(GtkWidget *w, { char *text; - if (view->clear_handle != NULL) + if ((view != NULL ) && (view->clear_handle != NULL)) return; text = g_strdup_printf(_("You are about to remove the log file for %s. Do you want to continue?"), |