# HG changeset patch # User Stu Tomlinson # Date 1130607416 0 # Node ID f1ada7870faefe96707fc31a17330b9175628a9d # Parent fdb78734e2ae9aa62968bc3d0fb78666d9eab38b [gaim-migrate @ 14182] This fixes clearing the error message when all accounts have reconnected committer: Tailor Script diff -r fdb78734e2ae -r f1ada7870fae src/gtkstatusbox.c --- a/src/gtkstatusbox.c Sat Oct 29 17:13:41 2005 +0000 +++ b/src/gtkstatusbox.c Sat Oct 29 17:36:56 2005 +0000 @@ -613,7 +613,9 @@ { if (status_box->error) g_free(status_box->error); - status_box->error = g_strdup(error); + status_box->error = NULL; + if (error != NULL) + status_box->error = g_strdup(error); gtk_gaim_status_box_refresh(status_box); }