From f774ea81e5d3e2607da601eeaf1b875dbe5b259a Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Tue, 18 Sep 2001 05:11:31 +0000 Subject: use g_strfreev. (match_name): s/g_free/g_strfreev. (match_file_as): 2001-09-17 Larry Ewing * gui/component/select-names/e-select-names-completion.c (name_style_query): use g_strfreev. (match_name): s/g_free/g_strfreev. (match_file_as): s/g_free/g_strfreev. * backend/ebook/e-book-util.c (e_book_name_and_email_query): fix the memory handling here. All there members of the vector need to be freed all the time. * backend/ebook/load-pine-addressbook.c (parse_line): free the string outside of the test that makes sure there are three entries. svn path=/trunk/; revision=12936 --- addressbook/backend/ebook/load-pine-addressbook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/backend/ebook/load-pine-addressbook.c') diff --git a/addressbook/backend/ebook/load-pine-addressbook.c b/addressbook/backend/ebook/load-pine-addressbook.c index 6963a7ed46..c1d58a88bf 100644 --- a/addressbook/backend/ebook/load-pine-addressbook.c +++ b/addressbook/backend/ebook/load-pine-addressbook.c @@ -53,9 +53,9 @@ parse_line (EBook *book, char *line) "email", &list, NULL); e_list_append(list, strings[2]); - g_strfreev(strings); e_book_add_card(book, card, add_card_cb, card); } + g_strfreev(strings); } static void -- cgit v1.2.3