[Bug 81751] New: _mcd_connection_set_tp_connection() uses tp_asv_new incorrectly
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Jul 25 09:25:54 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=81751
Priority: medium
Bug ID: 81751
Assignee: telepathy-bugs at lists.freedesktop.org
Summary: _mcd_connection_set_tp_connection() uses tp_asv_new
incorrectly
QA Contact: telepathy-bugs at lists.freedesktop.org
Severity: minor
Classification: Unclassified
OS: All
Reporter: Steffen.Kiess at ipvs.uni-stuttgart.de
Hardware: All
Status: NEW
Version: git master
Component: mission-control
Product: Telepathy
_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);
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the telepathy-bugs
mailing list