WinZip Kernel: Increase supported data length from 8k to 16mb

pull/2879/head
Jens Steube 3 years ago
parent 372ca6609f
commit 4730cf6e79

@ -37,7 +37,7 @@ typedef struct zip2
u32 verify_bytes;
u32 compress_length;
u32 data_len;
u32 data_buf[2048];
u32 data_buf[0x4000000];
u32 auth_len;
u32 auth_buf[4];

@ -63,6 +63,7 @@
- OpenCL Runtime: Workaround JiT crash (SC failed. No reason given.) on macOS by limiting local memory allocations to 32k
- Status View: Include time and duration info when pausing and resuming
- Tests: Changed tests for VeraCrypt from -a 0 to -a 3, because password extension is not available to all shells
- WinZip Kernel: Increase supported data length from 8k to 16mb
* changes v6.2.1 -> v6.2.2

@ -61,7 +61,7 @@ typedef struct zip2
u32 verify_bytes;
u32 compress_length;
u32 data_len;
u32 data_buf[2048];
u32 data_buf[0x4000000];
u32 auth_len;
u32 auth_buf[4];
@ -166,7 +166,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
| TOKEN_ATTR_VERIFY_HEX;
token.len_min[7] = 0;
token.len_max[7] = 16384;
token.len_max[7] = 0x4000000 * 4 * 2;
token.sep[7] = '*';
token.attr[7] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_HEX;

Loading…
Cancel
Save