diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-main-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index f6fe0c9b4..58ace96d1 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -189,7 +189,7 @@ main_window_flash_foreach (GtkTreeModel *model, contact = empathy_contact_from_folks_individual (individual); if (contact != data->event->contact) { - if (contact) { + if (contact != NULL) { g_object_unref (contact); } return FALSE; @@ -221,7 +221,7 @@ main_window_flash_foreach (GtkTreeModel *model, } g_object_unref (individual); - if (contact) + if (contact != NULL) g_object_unref (contact); return FALSE; @@ -355,7 +355,7 @@ main_window_row_activated_cb (EmpathyContactListView *view, g_object_unref (contact); OUT: - if (individual) + if (individual != NULL) g_object_unref (individual); } |