mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
This commit is contained in:
parent
8d7007c82b
commit
d653f1604b
@ -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
|
||||
|
||||
|
@ -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 */
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user