From b6e67ed551aef7e1273317978075e4e034e18d73 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 22 Apr 2011 19:34:22 +0200 Subject: applet: fixed segfault when abrtd is restarted rhbz#698934 --- src/applet/applet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/applet/applet.c b/src/applet/applet.c index eee3d108..e965a3ba 100644 --- a/src/applet/applet.c +++ b/src/applet/applet.c @@ -164,7 +164,7 @@ static void NameOwnerChanged(DBusMessage* signal) } // hide icon if it's visible - as NM and don't show it, if it's not - if (!new_owner[0]) + if (applet && !new_owner[0]) hide_icon(applet); } -- cgit