diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/backend/ebook/e-card-compare.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 77c4200b6c..8775350463 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2001-07-05 Christopher James Lahey <clahey@ximian.com> + * backend/ebook/e-card-compare.c (match_search_info_free): Set + info->avoid = NULL. This shouldn't make a difference, but it + can't hurt. + +2001-07-05 Christopher James Lahey <clahey@ximian.com> + * gui/widgets/e-addressbook-table-adapter.c (addressbook_is_cell_editable): Check if the row is within our table and return from this function as if the card is a standard diff --git a/addressbook/backend/ebook/e-card-compare.c b/addressbook/backend/ebook/e-card-compare.c index 05be64d560..d4aa89c4cc 100644 --- a/addressbook/backend/ebook/e-card-compare.c +++ b/addressbook/backend/ebook/e-card-compare.c @@ -351,6 +351,7 @@ match_search_info_free (MatchSearchInfo *info) if (info->avoid) { g_list_foreach (info->avoid, (GFunc) gtk_object_unref, NULL); g_list_free (info->avoid); + info->avoid = NULL; } g_free (info); |