Fix crash when using the function "Import DTAUS and send". The actual function is still implemented, though.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19804 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2010-11-13 21:23:06 +00:00
parent 0b0deee99f
commit 3888ebac16
2 changed files with 2 additions and 1 deletions

View File

@ -918,7 +918,7 @@ gnc_ab_import_context(AB_IMEXPORTER_CONTEXT *context,
data->execute_txns = execute_txns; data->execute_txns = execute_txns;
data->api = api; data->api = api;
data->parent = parent; data->parent = parent;
data->job_list = NULL; data->job_list = AB_Job_List2_new();
data->generic_importer = NULL; data->generic_importer = NULL;
/* Import transactions */ /* Import transactions */

View File

@ -219,6 +219,7 @@ gnc_file_aqbanking_import(const gchar *aqbanking_importername,
if (gnc_ab_ieci_run_matcher(ieci)) if (gnc_ab_ieci_run_matcher(ieci))
{ {
/* FIXME */ /* FIXME */
g_error("Sorry, executing the list of imported jobs is not yet implemented.");
/* gnc_hbci_multijob_execute(NULL, api, job_list, gui); */ /* gnc_hbci_multijob_execute(NULL, api, job_list, gui); */
} }
} }