GNOME Bugzilla – Bug 589015
metadata/meta-daemon.c is missing dbus_error_init() in register_name
Last modified: 2009-07-20 14:50:05 UTC
This causes the metadata daemon to randomly exit during startup. BTW: there's no metadata component in bugzilla.
Created attachment 138732 [details] [review] Proposed patch
Confirmed as well here, I came up with exactly the same patch. $ /usr//lib/gvfs/gvfsd-metadata process 20935: arguments to dbus_bus_request_name() were incorrect, assertion "(error) == NULL || !dbus_error_is_set ((error))" failed in file dbus-bus.c line 1114.
*** Bug 589024 has been marked as a duplicate of this bug. ***
Thanks for the patch, pushed to master. commit df28b6e600d79eafca4e75049cb81427086178d7 Author: Cosimo Cecchi <cosimoc@gnome.org> Date: Mon Jul 20 16:48:18 2009 +0200 Initialize the DBus error Initialize the DBus error structure before calling dbus_bus_request_name(). Fix bug #589015, patch by Patryk Zawadzki.