# HG changeset patch # User masneyb # Date 1094518864 0 # Node ID 79908ac335d2455feef0cfdc7bbda0e81dfb8a9f # Parent 87ea7ff84a5df25b4a5a36c023df9143397d87eb 2004-9-6 Brian Masney * src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is initialized to NULL diff -r 87ea7ff84a5d -r 79908ac335d2 ChangeLog --- a/ChangeLog Fri Sep 03 16:07:18 2004 +0000 +++ b/ChangeLog Tue Sep 07 01:01:04 2004 +0000 @@ -1,3 +1,7 @@ +2004-9-6 Brian Masney + * src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is + initialized to NULL + 2004-8-21 Brian Masney * lib/gftp.h lib/options.h lib/protocols.c - added gftp_protocol_default_port() that will return the default port for @@ -2787,7 +2791,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.314 2004/08/21 15:49:34 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.315 2004/09/07 01:01:04 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 87ea7ff84a5d -r 79908ac335d2 src/gtk/bookmarks.c --- a/src/gtk/bookmarks.c Fri Sep 03 16:07:18 2004 +0000 +++ b/src/gtk/bookmarks.c Tue Sep 07 01:01:04 2004 +0000 @@ -20,10 +20,10 @@ #include "gftp-gtk.h" static const char cvsid[] = "$Id$"; -static GtkWidget * bm_dialog = NULL, * bm_hostedit, * bm_portedit, - * bm_localdiredit, * bm_remotediredit, * bm_useredit, - * bm_passedit, * bm_acctedit, * anon_chk, * bm_pathedit, - * bm_protocol, * tree, * edit_bookmarks_dialog; +static GtkWidget * bm_dialog = NULL, * edit_bookmarks_dialog = NULL; +static GtkWidget * bm_hostedit, * bm_portedit, * bm_localdiredit, + * bm_remotediredit, * bm_useredit, * bm_passedit, * tree, + * bm_acctedit, * anon_chk, * bm_pathedit, * bm_protocol; static GHashTable * new_bookmarks_htable = NULL; static gftp_bookmarks_var * new_bookmarks = NULL; static GtkItemFactory * edit_factory;