[Bug 79550] Fix some clang/tartan errors
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Tue Jun 3 04:29:42 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=79550
--- Comment #3 from Guillaume Desmottes <guillaume.desmottes at collabora.co.uk> ---
(In reply to comment #1)
> + 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;
> }
Oh yeah I forgot about this API; thanks.
(In reply to comment #2)
> Also, wocky_jingle_state_machine_dance() should ideally return boolean,
> although I assume it isn't API anyway.
You're right that's better; done.
Branch has been updated.
--
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