# HG changeset patch # User Sean Egan # Date 1178243202 0 # Node ID 504613f178a056edbbbdd82952c930be298edc48 # Parent 4d8e7fd6e14d5d6997708308c84a47821482ee9b Fixes #601 diff -r 4d8e7fd6e14d -r 504613f178a0 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Thu May 03 22:39:37 2007 +0000 +++ b/pidgin/gtkaccount.c Fri May 04 01:46:42 2007 +0000 @@ -1343,10 +1343,6 @@ proxy_info = NULL; } - - /* We no longer need the data from the dialog window */ - account_win_destroy_cb(NULL, NULL, dialog); - /* If this is a new account, add it to our list */ if (new) purple_accounts_add(account); @@ -1364,6 +1360,9 @@ } } + /* We no longer need the data from the dialog window */ + account_win_destroy_cb(NULL, NULL, dialog); + return account; }