This commit is contained in:
Brecht Sanders 2023-05-30 17:48:32 +02:00
parent 8d7007c82b
commit d653f1604b
3 changed files with 9 additions and 2 deletions

View File

@ -1,8 +1,14 @@
0.2.35
2023-05-30 Brecht Sanders https://github.com/brechtsanders/
* fix free of uninitialized pointer in xlsxioread_sheetlist_close() (#121)
0.2.34
2022-11-02 Brecht Sanders https://github.com/brechtsanders/
* PR from captaingroove tp add minizip-ng support (#115)
* PR from captaingroove to add minizip-ng support (#115)
0.2.33

View File

@ -49,7 +49,7 @@ THE SOFTWARE.
/*! \brief minor version number */
#define XLSXIO_VERSION_MINOR 2
/*! \brief micro version number */
#define XLSXIO_VERSION_MICRO 34
#define XLSXIO_VERSION_MICRO 35
/*! @} */
/*! \cond PRIVATE */

View File

@ -1410,6 +1410,7 @@ DLL_EXPORT_XLSXIO xlsxioreadersheetlist xlsxioread_sheetlist_open (xlsxioreader
result->sheetcallbackdata.xmlparser = NULL;
result->sheetcallbackdata.callback = xlsxioread_list_sheets_resumable_callback;
result->sheetcallbackdata.callbackdata = result;
result->xmlparser = NULL;
result->nextsheetname = NULL;
if ((result->zipfile = XML_Char_openzip(handle->zip, mainsheetfile, 0)) != NULL) {
result->xmlparser = expat_process_zip_file_suspendable(result->zipfile, main_sheet_list_expat_callback_element_start, NULL, NULL, &result->sheetcallbackdata);