[Bug 79550] Fix some clang/tartan errors
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Tue Jun 3 03:58:39 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=79550
--- Comment #1 from Simon McVittie <simon.mcvittie at collabora.co.uk> ---
+ if (e != NULL)
+ {
+ if (error != NULL)
+ *error = e;
+ else
+ g_error_free (e);
+
+ return FALSE;
+ }
should be
if (e != NULL)
{
g_propagate_error (error, e);
return FALSE;
}
--
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