Drop a match if either of the text fields is NULL. This could happen if

2001-10-29  Jon Trowbridge  <trow@ximian.com>

        * gui/component/select-names/e-select-names-completion.c
        (make_match): Drop a match if either of the text fields is NULL.
        This could happen if any of the utf-8 involved is invalid, for
        example. (Bug #13757)

svn path=/trunk/; revision=14365
This commit is contained in:
Jon Trowbridge
2001-10-29 21:31:25 +00:00
committed by Jon Trowbridge
parent 75cd5e1f3d
commit 1dfda6573c
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2001-10-29 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-completion.c
(make_match): Drop a match if either of the text fields is NULL.
This could happen if any of the utf-8 involved is invalid, for
example. (Bug #13757)
2001-10-29 JP Rosevear <jpr@ximian.com>
* conduit/address-conduit.c (is_syncable): fix bug that allowed
@ -53,6 +60,7 @@
(field_activated): Stop editing on the activate signal and remove
the focus from the text. Fixes Ximian bug #12286.
>>>>>>> 1.897
2001-10-28 JP Rosevear <jpr@ximian.com>
* conduit/address-conduit.h: tidy

View File

@ -116,6 +116,12 @@ make_match (EDestination *dest, const gchar *menu_form, double score)
e_completion_match_set_text (match, e_destination_get_name (dest), menu_form);
/* Reject any match that has null text fields. */
if (! (e_completion_match_get_match_text (match) && e_completion_match_get_menu_text (match))) {
gtk_object_unref (GTK_OBJECT (match));
return NULL;
}
/* Since we sort low to high, we negate so that larger use scores will come first */
match->sort_major = card ? -floor (e_card_get_use_score (card)) : 0;