From: John Darrington Date: Thu, 9 May 2013 09:28:12 +0000 (+0200) Subject: Fix stack corruption in ODS reader. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19bf192a093527bf10b1de95fbe8798ba156f960;p=pspp Fix stack corruption in ODS reader. zip_reader_create takes a pointer to a struct string, which is used to store error messages during zip operations. I had been passing the address of a string declared as local variable in ods_probe. However since the zip reader survives ods_probe, this caused stack corruption in later read operations. This change makes the string a member of the reader created (if any). --- diff --git a/src/data/ods-reader.c b/src/data/ods-reader.c index 6e6fab4634..8504c14cca 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 @@ -602,28 +604,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; @@ -643,14 +650,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; }