X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata%2Fods-reader.c;h=a6ca1fbe81169002e0f96486dfd3b193287a4b63;hb=659c54ca0aa9728f7b7783347a6be741ffb87ff3;hp=39e82e5caea953dbe35e491e70098513a7e2494b;hpb=09f6f854addb3226177a3bf8de4b05f9c9b2c65e;p=pspp diff --git a/src/data/ods-reader.c b/src/data/ods-reader.c index 39e82e5cae..a6ca1fbe81 100644 --- a/src/data/ods-reader.c +++ b/src/data/ods-reader.c @@ -152,6 +152,8 @@ struct ods_reader bool read_names; struct string ods_errs; + + struct string zip_errs; }; void @@ -592,28 +594,33 @@ init_reader (struct ods_reader *r, bool report_errors) } + struct spreadsheet * ods_probe (const char *filename, bool report_errors) { - struct ods_reader *r; - struct string errs = DS_EMPTY_INITIALIZER; int sheet_count; - struct zip_reader *zr = zip_reader_create (filename, &errs); - xmlTextReaderPtr xtr; + struct ods_reader *r = xzalloc (sizeof *r); + xmlTextReaderPtr xtr; + struct zip_reader *zr; + + ds_init_empty (&r->zip_errs); + + zr = zip_reader_create (filename, &r->zip_errs); if (zr == NULL) { if (report_errors) { msg (ME, _("Cannot open %s as a OpenDocument file: %s"), - filename, ds_cstr (&errs)); + filename, ds_cstr (&r->zip_errs)); } + ds_destroy (&r->zip_errs); + free (r); return NULL; } sheet_count = get_sheet_count (zr); - r = xzalloc (sizeof *r); r->zreader = zr; r->ref_cnt = 1; @@ -633,14 +640,12 @@ ods_probe (const char *filename, bool report_errors) r->n_allocated_sheets = 0; r->sheets = NULL; - ds_destroy (&errs); - r->spreadsheet.file_name = filename; return &r->spreadsheet; error: + ds_destroy (&r->zip_errs); zip_reader_destroy (r->zreader); - ds_destroy (&errs); free (r); return NULL; }