mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Update assert in vli_ceil4().
The argument to vli_ceil4() should always guarantee the return value is also a valid lzma_vli. Thus the highest three valid lzma_vli values are invalid arguments. All uses of the function ensure this so the assert is updated to match this.
This commit is contained in:
parent
ae5c07b22a
commit
721e3d9f7a
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ extern void lzma_index_prealloc(lzma_index *i, lzma_vli records);
|
||||||
static inline lzma_vli
|
static inline lzma_vli
|
||||||
vli_ceil4(lzma_vli vli)
|
vli_ceil4(lzma_vli vli)
|
||||||
{
|
{
|
||||||
assert(vli <= LZMA_VLI_MAX);
|
assert(vli <= UNPADDED_SIZE_MAX);
|
||||||
return (vli + 3) & ~LZMA_VLI_C(3);
|
return (vli + 3) & ~LZMA_VLI_C(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue