From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 24 00:20:08 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C0C616A41F for ; Sat, 24 Dec 2005 00:20:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B1843D58 for ; Sat, 24 Dec 2005 00:20:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBO0K7b0005818 for ; Sat, 24 Dec 2005 00:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBO0K7N6005817; Sat, 24 Dec 2005 00:20:07 GMT (envelope-from gnats) Date: Sat, 24 Dec 2005 00:20:07 GMT Message-Id: <200512240020.jBO0K7N6005817@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Joel Diaz Cc: Subject: Re: ports/90865: xchat-gnome 0.5_1 crash on startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joel Diaz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Dec 2005 00:20:08 -0000 The following reply was made to PR ports/90865; it has been noted by GNATS. From: Joel Diaz To: bug-followup@FreeBSD.org, joeldiaz@nc.rr.com Cc: Subject: Re: ports/90865: xchat-gnome 0.5_1 crash on startup Date: Fri, 23 Dec 2005 19:16:30 -0500 --=-J4d/jkWyoVI4EcDojvdx Content-Type: text/plain Content-Transfer-Encoding: 7bit Actually, I poked around the xchat-gnome subversion repository. The proper fix is more like (I'm attaching the file also since Evolution is going to kill the formating on this): --- src/fe-gnome/navigation-tree.c.orig Fri Dec 23 19:10:30 2005 +++ src/fe-gnome/navigation-tree.c Fri Dec 23 19:11:11 2005 @@ -847,6 +847,9 @@ session *sess; session_gui *tgui; + if (gui.server_tree == NULL) + return; + treeview = GTK_TREE_VIEW (glade_xml_get_widget (gui.xml, "userlist")); if (gui.server_tree->current_path != NULL) --=-J4d/jkWyoVI4EcDojvdx Content-Disposition: attachment; filename=patch-navigation-tree.c Content-Type: text/x-csrc; name=patch-navigation-tree.c; charset=us-ascii Content-Transfer-Encoding: 7bit --- src/fe-gnome/navigation-tree.c.orig Fri Dec 23 19:10:30 2005 +++ src/fe-gnome/navigation-tree.c Fri Dec 23 19:11:11 2005 @@ -847,6 +847,9 @@ session *sess; session_gui *tgui; + if (gui.server_tree == NULL) + return; + treeview = GTK_TREE_VIEW (glade_xml_get_widget (gui.xml, "userlist")); if (gui.server_tree->current_path != NULL) --=-J4d/jkWyoVI4EcDojvdx--