← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~ken-vandine/indicator-me/lp_739319 into lp:indicator-me

 

Ken VanDine has proposed merging lp:~ken-vandine/indicator-me/lp_739319 into lp:indicator-me.

Requested reviews:
  Indicator Applet Developers (indicator-applet-developers)
Related bugs:
  Bug #739319 in The Me Menu: "unity-panel-service crashed with SIGABRT in username_cb()"
  https://bugs.launchpad.net/indicator-me/+bug/739319

For more details, see:
https://code.launchpad.net/~ken-vandine/indicator-me/lp_739319/+merge/55367

A g_warning here seems harmless and it prevents the crash reported in bug 739319
-- 
https://code.launchpad.net/~ken-vandine/indicator-me/lp_739319/+merge/55367
Your team ayatana-commits is subscribed to branch lp:indicator-me.
=== modified file 'src/indicator-me.c'
--- src/indicator-me.c	2011-03-10 17:53:09 +0000
+++ src/indicator-me.c	2011-03-29 16:06:40 +0000
@@ -189,7 +189,7 @@
 	g_return_if_fail(status_proxy != NULL);
 
 	if (error != NULL) {
-		g_error("Could not get the username %s", error->message);
+		g_warning("Could not get the username %s", error->message);
 		g_error_free(error);
 		return;
 	}
@@ -217,7 +217,6 @@
   } else {
     gtk_widget_hide(GTK_WIDGET(label));
   }
-
 }
 
 static GtkLabel *


Follow ups