Fix missing NULL argument to g_strconcat.
authorFrederic Crozat <fcrozat@novell.com>
Tue, 8 Mar 2011 10:11:23 +0000 (11:11 +0100)
committerFrederic Crozat <fcrozat@novell.com>
Tue, 8 Mar 2011 10:12:41 +0000 (11:12 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=644185

registryd/registry-main.c

index c9c5758..083de19 100644 (file)
@@ -98,7 +98,7 @@ kill_accessibility_bus ()
   home = getenv ("HOME");
   if (!home)
     return;
-  name = g_strconcat (home, "/", ".atspi-dbus-bus.pid");
+  name = g_strconcat (home, "/", ".atspi-dbus-bus.pid", NULL);
   if (!name)
     return;