diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-11-15 21:44:35 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-11-15 21:44:35 +0800 |
commit | 750f7705fe5d58f2c13a57d5e3c844aa0f205e10 (patch) | |
tree | d44ea16041cc53b78c910df58d81c02c0cf868ab /libempathy-gtk | |
parent | 4a8508f3b3a0c595add6908188a9a3e9c46c509a (diff) | |
parent | 1332eb95a91fb7e4f001757f702e79002ad3aebc (diff) | |
download | gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar.gz gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar.bz2 gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar.lz gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar.xz gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.tar.zst gsoc2013-empathy-750f7705fe5d58f2c13a57d5e3c844aa0f205e10.zip |
Merge branch 'trivia'
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-individual-store.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c index 96bea8042..807afb2a2 100644 --- a/libempathy-gtk/empathy-individual-store.c +++ b/libempathy-gtk/empathy-individual-store.c @@ -1350,6 +1350,9 @@ individual_store_contact_sort (FolksIndividual *individual_a, account_a = empathy_contact_get_account (contact_a); account_b = empathy_contact_get_account (contact_b); + g_assert (account_a != NULL); + g_assert (account_b != NULL); + /* protocol */ ret_val = g_strcmp0 (tp_account_get_protocol (account_a), tp_account_get_protocol (account_b)); |