From d72774ce1ae05aa40ad6d8183323deb203155018 Mon Sep 17 00:00:00 2001 From: Marco Barisione Date: Wed, 3 Oct 2007 17:12:26 +0000 Subject: Initialize every GError to NULL. Fixes bug #482889. 2007-10-03 Marco Barisione * libempathy/empathy-contact-factory.c: * libempathy/empathy-tp-call.c: * libempathy/empathy-tp-group.c: * libempathy/empathy-utils.c: Initialize every GError to NULL. Fixes bug #482889. svn path=/trunk/; revision=360 --- libempathy/empathy-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libempathy/empathy-utils.c') diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index e354e940d..032b121ea 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -427,7 +427,7 @@ empathy_inspect_handle (McAccount *account, GArray *handles; gchar **names; gchar *name; - GError *error; + GError *error = NULL; g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL); g_return_val_if_fail (handle != 0, NULL); @@ -479,7 +479,7 @@ empathy_call_contact (EmpathyContact *contact) const gchar *bus_name; TpChan *new_chan; EmpathyTpGroup *group; - GError *error; + GError *error = NULL; g_return_if_fail (EMPATHY_IS_CONTACT (contact)); -- cgit v1.2.3