diff options
-rw-r--r-- | addressbook/ChangeLog | 3 | ||||
-rw-r--r-- | addressbook/printing/e-contact-print.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 570898d961..2ab3e9b4b7 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,8 @@ 2001-10-20 Jon Trowbridge <trow@ximian.com> + * printing/e-contact-print.c (e_contact_print_card): Check that the + string we are checking for xml-ness is non-NULL. + * backend/ebook/e-destination.c (e_destination_importv): Filter out empty destinations. (also Bug #13036) diff --git a/addressbook/printing/e-contact-print.c b/addressbook/printing/e-contact-print.c index 18e5922854..42c7718379 100644 --- a/addressbook/printing/e-contact-print.c +++ b/addressbook/printing/e-contact-print.c @@ -478,7 +478,7 @@ e_contact_print_card (ECardSimple *simple, EContactPrintContext *ctxt) char *string; string = e_card_simple_get(simple, field); - if (!strncmp (string, "<?xml", 4)) { + if (string && !strncmp (string, "<?xml", 4)) { EDestination *dest = e_destination_import (string); if (dest != NULL) { gchar *new_string = g_strdup (e_destination_get_address (dest)); |