mirror of
https://git.tukaani.org/xz.git
synced 2025-02-17 14:08:12 +00:00
Tests: test_index: Use minimal values to test integer overflow
(cherry picked from commit 612005bbdb0dea9dc09e9e2e9cc16a15c1480acd)
This commit is contained in:
parent
54f4a4162a
commit
2358ef8238
@ -1208,9 +1208,9 @@ test_lzma_index_cat(void)
|
||||
assert_true(src != NULL);
|
||||
|
||||
assert_lzma_ret(lzma_index_append(dest, NULL,
|
||||
UNPADDED_SIZE_MIN, LZMA_VLI_MAX - 1), LZMA_OK);
|
||||
UNPADDED_SIZE_MIN, (LZMA_VLI_MAX / 2) + 1), LZMA_OK);
|
||||
assert_lzma_ret(lzma_index_append(src, NULL,
|
||||
UNPADDED_SIZE_MIN, LZMA_VLI_MAX - 1), LZMA_OK);
|
||||
UNPADDED_SIZE_MIN, (LZMA_VLI_MAX / 2) + 1), LZMA_OK);
|
||||
assert_lzma_ret(lzma_index_cat(dest, src, NULL), LZMA_DATA_ERROR);
|
||||
|
||||
lzma_index_end(dest, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user