diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 97948a4f2..c81279043 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -562,7 +562,7 @@ empathy_tp_contact_list_get_from_id (EmpathyTpContactList *list, contact = tp_contact_list_find (EMPATHY_CONTACT_LIST (list), id); if (contact) { - return contact; + return g_object_ref (contact); } /* The id is unknown, requests a new handle */ @@ -574,7 +574,7 @@ empathy_tp_contact_list_get_from_id (EmpathyTpContactList *list, "RequestHandle for %s failed: %s", id, error ? error->message : "No error given"); g_clear_error (&error); - return 0; + return NULL; } handle = g_array_index(handles, guint, 0); |