From c169edca762daf6d56dd1b48d738b9c37f0b5028 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Wed, 29 Mar 2000 02:20:18 +0000 Subject: remove unnecessary strdup/free. * addressbook/backend/pas/pas-backend-file.c (pas_backend_file_build_all_cards_list): remove unnecessary strdup/free. svn path=/trunk/; revision=2240 --- addressbook/backend/pas/pas-backend-file.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'addressbook/backend') diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 5c108f740a..3dd0ced33a 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -221,7 +221,6 @@ pas_backend_file_build_all_cards_list(PASBackend *backend, DB *db = bf->priv->file_db; int db_error; DBT id_dbt, vcard_dbt; - char *id; cursor_data->elements = NULL; @@ -229,16 +228,13 @@ pas_backend_file_build_all_cards_list(PASBackend *backend, while (db_error == 0) { - id = g_strndup(id_dbt.data, id_dbt.size); - /* don't include the version in the list of cards */ - if (!strcmp (id, PAS_BACKEND_FILE_VERSION_NAME)) { - g_free(id); - } - else { - g_free(id); - cursor_data->elements = g_list_append(cursor_data->elements, g_strndup(vcard_dbt.data, - vcard_dbt.size)); + if (id_dbt.size != strlen(PAS_BACKEND_FILE_VERSION_NAME) + || strncmp (id_dbt.data, PAS_BACKEND_FILE_VERSION_NAME, id_dbt.size)) { + + cursor_data->elements = g_list_append(cursor_data->elements, + g_strndup(vcard_dbt.data, + vcard_dbt.size)); } db_error = db->seq(db, &id_dbt, &vcard_dbt, R_NEXT); -- cgit v1.2.3