_mcd_connection_set_tp_connection() uses tp_asv_new incorrectly: http://cgit.freedesktop.org/telepathy/telepathy-mission-control/tree/src/mcd-connection.c?id=190de711459a51eb236b773a57b0c188ebf1da6a#n2212 GHashTable *details = tp_asv_new ( "debug-message", inner_error->message, NULL); this should be: GHashTable *details = tp_asv_new ( "debug-message", G_TYPE_STRING, inner_error->message, NULL);
Thanks, fixed in the 5.16 branch. commit ab29ae42f751bf7e4ecc9a601e09cafab499fd14 Author: Steffen Kieß <Steffen.Kiess@ipvs.uni-stuttgart.de> Date: Mon Aug 25 14:11:35 2014 +0200 mcd-connection: use tp_asv_new() properly The second argument has to be the type of the value. https://bugs.freedesktop.org/show_bug.cgi?id=81751
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.