From 95ca99cbf6db33025f095af1d1be1261a5cf0d71 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Thu, 10 Aug 2000 21:20:46 +0000 Subject: Fixed any search to not crash on missing phone numbers or email addresses. 2000-08-10 Christopher James Lahey * backend/pas/pas-backend-file.c: Fixed any search to not crash on missing phone numbers or email addresses. svn path=/trunk/; revision=4704 --- addressbook/backend/pas/pas-backend-file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'addressbook/backend') diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 36310e0f43..fc67c4c0d8 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -165,7 +165,7 @@ compare_email (ECardSimple *card, const char *str, for (i = E_CARD_SIMPLE_EMAIL_ID_EMAIL; i < E_CARD_SIMPLE_EMAIL_ID_LAST; i ++) { const char *email = e_card_simple_get_email (card, i); - if (compare(email, str)) + if (email && compare(email, str)) return TRUE; } @@ -181,7 +181,7 @@ compare_phone (ECardSimple *card, const char *str, for (i = E_CARD_SIMPLE_PHONE_ID_ASSISTANT; i < E_CARD_SIMPLE_PHONE_ID_LAST; i ++) { const ECardPhone *phone = e_card_simple_get_phone (card, i); - if (compare(phone->number, str)) + if (phone && compare(phone->number, str)) return TRUE; } -- cgit v1.2.3