Free a list in import-account-matcher.c.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14898 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2006-09-26 22:08:52 +00:00
parent 311c85ac9b
commit efcddd5e7e

View File

@ -102,13 +102,14 @@ gnc_import_add_account(struct _accountpickerdialog * picker)
if(picker->new_account_default_type!=ACCT_TYPE_NONE)
{
/*Yes, this is weird, but we really DO want to pass the value instead of the pointer...*/
valid_types = g_list_prepend(valid_types, (gpointer)picker->new_account_default_type);
valid_types = g_list_prepend(valid_types, GINT_TO_POINTER(picker->new_account_default_type));
}
selected_account = gnc_tree_view_account_get_selected_account(picker->account_tree);
new_account = gnc_ui_new_accounts_from_name_with_defaults ( picker->account_human_description,
valid_types,
picker->new_account_default_commodity,
selected_account);
g_list_free(valid_types);
gnc_tree_view_account_set_selected_account(picker->account_tree, new_account);
}