| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
this commit changes that uncompressed blocks are only available
for independent blocks.
Building and updating the dictionary from an uncompressed block
has no adverse side effects.
Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
|
|\
| |
| | |
very minor refactor of lz4.c
|
|/
|
|
|
|
| |
almost no change, functionally equivalent
replaced one test by an assert()
(since it should always be true)
|
|\
| |
| | |
LZ4 HC match finder and parsers use direct offset values
|
| |
| |
| |
| |
| |
| |
| | |
because ubsan complains even about intermediate pointer arithmetic results
(in a simple linear formula with 3 factors for example).
use parenthesis to make sure calculations go directly from one valid memory address to another valid memory address value.
|
| |
| |
| |
| |
| | |
this formalized better the coupling between match length and match offset
which were 2 separated variables before.
|
| |
| |
| |
| |
| | |
replaced by direct offset value.
this virtual pointer was only used in rare _dstSize scenario.
|
| |
| |
| |
| | |
replaced by direct offset values.
|
| |
| |
| |
| | |
instead of a virtual pointer
|
|/
|
|
| |
instead of a virtual past pointer.
|
|\
| |
| | |
Update snapcraft.yaml to reflect build of v1.9.4
|
| | |
|
|/
|
|
| |
and also on decompress_continue variants.
|
| |
|
|\
| |
| | |
fix rare ub
|
|/
|
|
|
| |
apparently, accessing the short member of a union
still requires enough space for its largest member.
|
|\
| |
| | |
remove usages of `base` pointer
|
| |
| |
| |
| | |
now, even intermediate ptr arithmetic results can be UB ??
|
| |
| |
| |
| |
| |
| |
| | |
by making LZ4_putPosition() specific to byPtr strategy.
byU32 and byU16 use LZ4_putIndexOnHash() instead.
In both cases, it makes it irrelevant to pass` base as reference ptr.
|
|/
|
|
|
| |
within `LZ4_loadDict()` function :
it's possible to only employ Indexes directly.
|
|\
| |
| | |
fix benchmark more using Dictionary
|
| |
| |
| |
| | |
also : errors during benchmark mode return an error code.
|
|/
|
|
|
|
|
| |
benchmark dictionary mode, implemented in #808, is incorrect.
It would desynchronize compression and decompression as soon as 2+ files are dictionary compressed.
Also : slightly improved traces system, to also include __LINE__ number
|
|\
| |
| | |
add a test to catch issue #1164
|
|/
|
|
|
|
|
|
|
|
| |
where `--test -m files*.lz4` would create a bunch of `files*` files.
`--test` should not create any file.
It turns out the bug was already fixed when #1164 was filled,
but it also shows that the CI system was blind to such issues when it happened.
The new test was run with `v1.9.3` and triggered an error, as expected.
|
|
|
|
| |
one fix was forgotten
|
| |
|
|\
| |
| | |
build: Support BUILD_SHARED=no
|
|/
|
|
|
|
| |
Since e585a438c714652e866a59371b287f52aa4d2dc3, the BUILD_SHARED
Makefile variable only takes effect for the install target (i.e. the
shared libraries always built). This restores the original behaviour.
|
|
|
|
|
|
| |
Now it's only about LZ4F_compressFrame(),
and it's only about the Compression Context
(not the hash tables, which used to be integrated).
|
|
|
|
| |
as requested in #1156
|
|\
| |
| | |
simplify getPosition
|
|/
|
|
|
| |
it's only used in byPtr mode.
This removes the need to transfer `base` ptr value.
|
|
|
|
| |
compilers
|
|
|
|
| |
notably regarding ubsan test status (now enabled)
|
|\
| |
| | |
fixed a few remaining ubsan warnings in lz4hc
|
|/
|
|
| |
mostly related to pointer arithmetic involving NULL ptr.
|
|\
| |
| | |
attempt to enable ubsan tests in CI
|
|/ |
|
|\
| |
| | |
allocation optimization for lz4frame compression
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
as noted by @yixiutt, the temporary buffer inside lz4frame compression
is being invalidated at end of compression,
forcing it to be re-allocated at next compression job.
This shouldn't be necessary.
This change was introduced in #236, as a way to fix #232,
but neither the issue is explained, nor why the patch fixes it.
This patch revert to previous behavior,
where temporary buffer is kept between compression calls.
This results in a net reduction of allocation workload.
Additionally, the temporary buffer should only need malloc(),
not calloc(), thus saving initialization.
This diff implements both changes.
Long fuzzer tests will be run to ensure that no sanitizer warning get triggered.
Additionally :
fixed a minor ubsan warning in LZ4F_decompress().
|
|\
| |
| |
| |
| | |
lz4/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 1 to 3
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v1...v3)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
|\
| |
| | |
Bump actions/checkout from 2 to 3
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
|\
| |
| |
| |
| | |
lz4/dependabot/github_actions/actions/setup-python-4
Bump actions/setup-python from 2 to 4
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v4)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
|\
| |
| | |
Add dependabot
|
|/
|
|
| |
Dependabot is configured to update GitHub actions. It will check weekly.
|