2005-11-04 Robert Love <rml@novell.com>

* auth-dialog/gnome-two-password-dialog.c: Embarrassing bug!  Make sure
	  we g_free() these things in the right order.  Fix c/o JPR. (Novell
	  bug #121884).


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1098 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2005-11-04 20:57:29 +00:00 committed by Robert Love
parent c108f58be1
commit e2659894f4
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-11-04 Robert Love <rml@novell.com>
* auth-dialog/gnome-two-password-dialog.c: Embarrassing bug! Make sure
we g_free() these things in the right order. Fix c/o JPR. (Novell
bug #121884).
2005-10-27 Christopher Aillon <caillon@redhat.com>
* src/nm-vpn-service.c: Only signal the bus that state

View file

@ -161,9 +161,8 @@ gnome_two_password_dialog_finalize (GObject *object)
g_object_unref (password_dialog->details->password_entry_secondary);
g_free (password_dialog->details->remember_label_text);
g_free (password_dialog->details);
g_free (password_dialog->details->secondary_password_label);
g_free (password_dialog->details);
if (G_OBJECT_CLASS (parent_class)->finalize != NULL)
(* G_OBJECT_CLASS (parent_class)->finalize) (object);