Nathan Moinvaziri
bfc8f6c9e1
Added definition for zipOpenNewFileInZip64 for backwards compat #787
2024-06-15 09:16:27 -07:00
Yu SuiXian
d1f4d18899
Update comments style in various code files
2023-12-29 07:04:22 -08:00
Brad Smith
487259b09a
Silence MZ_COMPAT_VERSION warnings
...
In file included from /usr/local/include/minizip/unzip.h:11:
/usr/local/include/minizip/mz_compat.h:123:5: warning: 'MZ_COMPAT_VERSION' is not defined, evaluates to 0 [-Wundef]
^
2023-12-18 09:08:45 -08:00
Nathan Moinvaziri
bacf5122ac
Fixed compat layer structures layout and types. #749
2023-12-17 09:45:33 -08:00
Nathan Moinvaziri
6c5f265a55
Added back unzLocateFile variant for minizip 1.2 with MZ_COMPAT_VERSION.
2023-12-17 09:34:25 -08:00
Tulio Magno Quites Machado Filho
fbd8443122
Fix unzLocateFile 3rd parameter
...
Replace the previous type with one that is compatible with an int in
order to be identical to the interface used in madler's zlib.
Fixes #745 .
2023-12-11 13:47:31 -08:00
Hans Wennborg
2c2d6e5940
Reject overflows of zip header fields in minizip compat
...
This checks the lengths of the file name, and comment
that would be put in the zip headers, and rejects them if they are
too long. They are each limited to 65535 bytes in length by the zip
format. This also avoids possible buffer overflows if the provided
fields are too long.
See #736 .
2023-12-05 19:05:15 -08:00
Nick Brighten
2bfdd6e6a7
Fixed implicit conversion precision warnings
...
Implicit conversion loses integer precision: 'unsigned long' to 'int32_t' (aka 'int') in line 124, 145 and 534
Implicit conversion loses integer precision: 'unsigned long' to 'uint32_t' (aka 'unsigned int') in line 599
2023-09-12 12:07:35 -07:00
Nathan Moinvaziri
11d932c7c6
Fixed callback casting warning on Windows.
2023-04-18 17:32:08 -07:00
Nathan Moinvaziri
217adc9363
Remove first param from create functions.
...
Better handle low memory situations.
2023-04-09 11:14:26 -07:00
Nathan Moinvaziri
c9fc27ccee
Use calloc instead of malloc + memset and use strdup where possible.
2023-02-24 14:35:31 -08:00
Nathan Moinvaziri
261041dabc
Remove useless MZ_CUSTOM_ALLOC and MZ_CUSTOM_FREE.
...
It would have required an include to make it useful.
2023-02-24 14:23:04 -08:00
Nathan Moinvaziri
f07faecdde
Remove all comparisons to NULL.
2023-02-19 16:04:13 -08:00
Nathan Moinvaziri
1e4cc21871
Fixed minor formatting whitespace changes.
2023-02-19 10:41:34 -08:00
Nathan Moinvaziri
03e4d2213d
Remove copyright years.
2023-02-16 13:14:21 -08:00
Nathan Moinvaziri
848c3e3503
Removed empty lines.
2022-11-29 17:19:49 -08:00
Markus Alind
6caefea90b
Compat: Close any open entry in unzOpenCurrentFile3 like zlib mini-zip.
2022-11-01 16:38:15 -07:00
Nathan Moinvaziri
29bf850b55
Remove unused variables in mz_stream_ioapi_seek.
2022-10-13 09:51:47 -07:00
Nathan Moinvaziri
8831548b9b
Remove fill_win32_filefunc64W so nobody tries to pass in widechar to zipOpen or unzOpen.
2021-05-08 12:28:11 -07:00
Nathan Moinvaziri
8622644d05
Fixed formatting.
2021-05-08 12:20:28 -07:00
Nathan Moinvaziri
8847f22979
Add support for ioapi in compatibility layer. #566
2021-05-08 12:15:00 -07:00
Nathan Moinvaziri
db95894646
Updated name of project to minizip-ng.
2021-01-23 16:19:05 -08:00
Niko
ee60b3c614
mz_compat: Move return to new line, adapt unzGetCurrentFileInfo64 as well
...
Moved return statement to separate line.
Applied the same changes to unzGetCurrentFileInfo64 (allow getting filename/comment/extrafield separately without unz_file_info64)
2020-12-03 00:14:02 -08:00
Niko
d2b1e76de8
mz_compat: support unzGetCurrentFileInfo without pfile_info
...
Allow getting filename/extrafield/comment separately without specifying an unz_file_info structure to improve compatibility with minizip1.
2020-12-03 00:14:02 -08:00
Viktor Szakats
ed03eedeff
mz_compat: sync parameter types with minizip1, add two compatibility wrappers
...
- zipOpenNewFileInZip*(): method/compression_method is 'int' in minizip1
- zipCloseFileInZipRaw64(): uncompressed_size is 'ZPOS64_T', which is 'uint64_t'
- unzTell64(): return value is 'ZPOS64_T', which is 'uint64_t'
- unztell(): return value should be 32-bit
- add unztell64() (full lowercase), which is the same as unzTell64()
- add unzeof(), which is the same as unzEndOfFile()
NOTE: It'd be probably useful to update mz_zip_entry_close_raw() uncompressed_size
type to unsigned.
2020-11-04 13:23:26 -08:00
Nathan Moinvaziri
70811ac6f5
Remove version number from headers.
2020-06-19 21:21:12 -07:00
Nathan Moinvaziri
dc6962b5fa
Use same brace style as zlib.
2020-06-14 22:00:02 -07:00
Nathan Moinvaziri
da0432141f
Fixed compiler warnings in test app and compatibility layer.
2020-06-08 14:21:58 -07:00
Nathan Moinvaziri
70a960af76
Changed fixed types in compatibility layer function prototypes when original minizip used unsigned long. #490
2020-06-08 12:35:50 -07:00
Nathan Moinvaziri
2aa369c468
Version 2.9.3.
2020-05-21 07:31:09 -07:00
Nathan Moinvaziri
5e8e455a71
Added more helper functions for getting mz_zip handle from compatibility layer.
2020-05-07 14:40:03 -07:00
Nathan Moinvaziri
5d54b6896b
Fixed bug in local comment not being written with compatibility layer.
...
Modified compat functions to use one-another for code coverage.
Added more tests for compatibility layer for code coverage.
2020-05-04 10:33:16 -07:00
Nathan Moinvaziri
f834045686
Added backwards compatibility shim for iCaseSenitivity param in unzLocateFile for original minizip.
2020-05-03 20:50:13 -07:00
Jim Park
c30353f8b5
Fix #461 : unzOpen2_64() when it fails keeps file handle open
2020-04-03 13:40:26 -04:00
Nathan Moinvaziri
b39f7a0e89
Version 2.9.2.
2020-02-12 08:38:09 -08:00
Nathan Moinvaziri
370ab036f3
Version 2.9.1.
2019-11-15 13:24:17 -08:00
Nathan Moinvaziri
10ac291d91
Version 2.9.0.
2019-09-18 16:55:43 -07:00
Nathan Moinvaziri
b7b90c3d19
Added append mode for ADDINZIP when using zip compatibility. #408
2019-08-15 17:09:10 -07:00
Nathan Moinvaziri
32fd805440
Version 2.8.9.
2019-07-04 10:32:02 -07:00
Nathan Moinvaziri
1aef5b4661
Added missing zipOpenNewFileInZip functions to compatibility layer. #400
2019-06-04 09:56:08 -07:00
Nathan Moinvaziri
fbfd4e82f7
Version 2.8.8.
2019-05-22 17:50:39 -07:00
Nathan Moinvaziri
64c4c7f868
Version 2.8.7.
2019-05-09 18:46:18 -07:00
Nathan Moinvaziri
cf20c09016
Added shim for dos date name changes to compatibility layer. ZipArchive/ZipArchive#509 .
2019-05-02 09:25:24 -07:00
Nathan Moinvaziri
4fe0687243
Version 2.8.6.
2019-04-08 13:26:32 -07:00
Nathan Moinvaziri
488f20ff1b
Version 2.8.5.
2019-03-17 09:38:10 -07:00
Nathan Moinvaziri
9805ab4117
Version 2.8.4.
2019-02-14 17:16:01 -08:00
Nathan Moinvaziri
2e2f995eda
Version 2.8.3.
2019-01-26 16:49:48 -08:00
Nathan Moinvaziri
aec922930f
Remove old minizip example macros.
2019-01-24 17:42:26 -08:00
Nathan Moinvaziri
2ca7f3950c
Version 2.8.2.
2019-01-08 16:07:10 -08:00
Nathan Moinvaziri
1ff40343b5
Version 2.8.1.
2018-12-01 09:59:19 -08:00