Update bundled libraries to lz4 1.10.0#307
Open
clintonsteiner wants to merge 1 commit intopython-lz4:masterfrom
Open
Update bundled libraries to lz4 1.10.0#307clintonsteiner wants to merge 1 commit intopython-lz4:masterfrom
clintonsteiner wants to merge 1 commit intopython-lz4:masterfrom
Conversation
|
If it helps, I checked the files against the upstream release v1.10.0. This is the result of sha1sum comparison: -f5fe71d902fd00b17e3b965be00348e0672f5ff3 lz4.c
+267c61e8579c163444bcf3ffc932cd4b26fa44e2 lz4.c
35855ab96a45eccda2009fc6b06462dd02bf0972 lz4.h
9e2260dc04f3349b75bacd1508297de23be46f35 lz4frame.c
f04bdb7ae139c6c49a2c283dc5e3a2c96b41d7d4 lz4frame.h
03cc07c28a78ff09cc86983aeb6e45c5f37ad398 lz4frame_static.h
9393e5cb8b6426d0dff30a856409f7757c7609df lz4hc.c
653dbe3acadbbc8533e6b3133ae420ddb626fd0b lz4hc.h
1ef2afee6c3e829285e2d63a648bd3698d91d68b xxhash.c
420605ab9ad0b00173818abafeed4c6677f5a48e xxhash.hThe difference in lz4.c is a whitespace error: --- lz4-1.10.0/lib/lz4.c 2024-07-21 19:29:49.000000000 +0200
+++ lz4libs/lz4.c 2025-10-23 19:45:20.349760278 +0200
@@ -2685,7 +2685,7 @@
if (result <= 0) return result;
lz4sd->prefixSize = (size_t)originalSize;
lz4sd->prefixEnd = (BYTE*)dest + originalSize;
- } else if (lz4sd->prefixEnd == (BYTE*)dest) {
+} else if (lz4sd->prefixEnd == (BYTE*)dest) {
DEBUGLOG(5, "continue using existing prefix");
result = LZ4_decompress_unsafe_generic(
(const BYTE*)source, (BYTE*)dest, originalSize,I suggest to rectify this so the sources are indeed 100% from the upstream release. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.