Age | Commit message (Expand) | Author | Files | Lines |
2023-10-22 | xz: Support basic sandboxing with Linux Landlock (ABI versions 1-3). | Lasse Collin | 3 | -1/+79 |
2023-10-22 | Simplify detection of Capsicum support. | Lasse Collin | 3 | -11/+7 |
2023-10-22 | xz/Windows: Allow clock_gettime with POSIX threads. | Lasse Collin | 1 | -3/+6 |
2023-10-22 | mythread.h: Make MYTHREAD_POSIX compatible with MinGW-w64's winpthreads. | Lasse Collin | 1 | -1/+22 |
2023-10-22 | xz/Windows: Ensure that clock_gettime() isn't used with MinGW-w64. | Lasse Collin | 1 | -2/+7 |
2023-10-22 | xz/Windows: Use GetTickCount64() with MinGW-w64 if using Vista threads. | Lasse Collin | 1 | -3/+11 |
2023-10-21 | liblzma: Move is_clmul_supported() back to crc_common.h. | Jia Tan | 4 | -50/+51 |
2023-10-19 | Build: Remove check for COND_CHECK_CRC32 in check/Makefile.inc. | Jia Tan | 1 | -2/+2 |
2023-10-19 | liblzma: Fix -fsanitize=address failure with crc_clmul functions. | Jia Tan | 1 | -0/+6 |
2023-10-18 | tuklib_integer: Revise unaligned reads and writes on strict-align archs. | Lasse Collin | 1 | -67/+189 |
2023-10-18 | tuklib_integer: Add missing write64be and write64le fallback functions. | Lasse Collin | 1 | -0/+34 |
2023-10-18 | liblzma: Set the MSVC optimization fix to only cover lzma_crc64_clmul(). | Jia Tan | 1 | -15/+15 |
2023-10-18 | liblzma: CRC_USE_GENERIC_FOR_SMALL_INPUTS cannot be used with ifunc. | Lasse Collin | 1 | -1/+3 |
2023-10-18 | liblzma: Include common.h in crc_common.h. | Lasse Collin | 2 | -1/+3 |
2023-10-18 | liblzma: Add include guards to crc_common.h. | Jia Tan | 1 | -0/+5 |
2023-10-18 | liblzma: Add the crc_always_inline macro to crc_simd_body(). | Jia Tan | 1 | -1/+1 |
2023-10-18 | liblzma: Create crc_always_inline macro. | Jia Tan | 1 | -0/+15 |
2023-10-18 | liblzma: Refactor CRC comments. | Jia Tan | 2 | -72/+53 |
2023-10-18 | liblzma: Create crc_clmul.c. | Jia Tan | 5 | -420/+435 |
2023-10-18 | liblzma: Define CRC_USE_IFUNC in crc_common.h. | Jia Tan | 3 | -4/+7 |
2023-10-13 | liblzma: Added crc32_clmul to crc32_fast.c. | Hans Jansen | 2 | -11/+255 |
2023-10-13 | liblzma: Moved CLMUL CRC logic to crc_common.h. | Hans Jansen | 2 | -247/+240 |
2023-10-13 | liblzma: Rename crc_macros.h to crc_common.h. | Hans Jansen | 4 | -4/+4 |
2023-09-26 | liblzma: Update a comment. | Lasse Collin | 1 | -2/+1 |
2023-09-27 | liblzma: Avoid compiler warning without creating extra symbol. | Jia Tan | 1 | -2/+1 |
2023-09-24 | Scripts: Change quoting style from `...' to '...'. | Jia Tan | 2 | -2/+2 |
2023-09-24 | xz: Change quoting style from `...' to '...'. | Jia Tan | 7 | -18/+18 |
2023-09-24 | liblzma: Change quoting style from `...' to '...'. | Jia Tan | 7 | -24/+24 |
2023-09-24 | tuklib_physmem: Comment out support for Windows versions older than 2000. | Lasse Collin | 1 | -11/+9 |
2023-09-24 | sysdefs.h: Update the comment about __USE_MINGW_ANSI_STDIO. | Lasse Collin | 1 | -1/+9 |
2023-09-22 | xz: Windows: Don't (de)compress to special files like "con" or "nul". | Lasse Collin | 1 | -7/+28 |
2023-09-22 | MSVC: #define inline and restrict only when needed. | Lasse Collin | 1 | -5/+8 |
2023-09-22 | liblzma: Move a few __attribute__ uses in function declarations. | Lasse Collin | 3 | -7/+10 |
2023-09-22 | xz, xzdec, lzmainfo: Use tuklib_attr_noreturn. | Lasse Collin | 7 | -25/+37 |
2023-09-22 | Remove incorrect uses of __attribute__((__malloc__)). | Lasse Collin | 3 | -6/+6 |
2023-09-22 | tuklib: Update tuklib_attr_noreturn for C11/C17 and C23. | Lasse Collin | 2 | -3/+23 |
2023-09-22 | MSVC: xz: Make file_io.c and file_io.h compatible with MSVC. | Lasse Collin | 2 | -0/+36 |
2023-09-22 | MSVC: xz: Use GetTickCount64() to implement mytime_now(). | Lasse Collin | 1 | -2/+9 |
2023-09-22 | MSVC: xz: Use _stricmp() instead of strcasecmp() in suffix.c. | Kelvin Lee | 1 | -2/+8 |
2023-09-22 | MSVC: xz: Use _isatty() from <io.h> to implement isatty(). | Kelvin Lee | 2 | -0/+10 |
2023-09-22 | MSVC: xz: Use _fileno() instead of fileno(). | Kelvin Lee | 1 | -0/+4 |
2023-09-22 | MSVC: xzdec: Use _fileno and _setmode. | Kelvin Lee | 1 | -0/+4 |
2023-09-22 | MSVC: Don't #include <unistd.h>. | Kelvin Lee | 2 | -2/+8 |
2023-09-14 | liblzma: Mark crc64_clmul() with __attribute__((__no_sanitize_address__)). | Lasse Collin | 1 | -0/+8 |
2023-08-31 | xz: Refactor thousand separator detection and disable it on MSVC. | Lasse Collin | 1 | -44/+45 |
2023-08-31 | xz: Fix a too relaxed assertion and remove uses of SSIZE_MAX. | Lasse Collin | 2 | -5/+4 |
2023-08-28 | liblzma: Update assert in vli_ceil4(). | Jia Tan | 1 | -1/+1 |
2023-08-28 | liblzma: Add overflow check for Unpadded size in lzma_index_append(). | Jia Tan | 1 | -0/+6 |
2023-08-08 | mythread.h: Fix typo error in Vista threads mythread_once(). | Jamaika1 | 1 | -1/+1 |
2023-08-02 | xz: Omit an empty paragraph on the man page. | Lasse Collin | 1 | -1/+0 |
2023-08-01 | mythread.h: Disable signal functions in builds targeting Wasm + WASI. | ChanTsune | 1 | -1/+1 |
2023-07-31 | Docs: Fix typos found by codespell | Dimitri Papadopoulos Orfanos | 12 | -21/+21 |
2023-07-24 | liblzma: Prevent an empty translation unit in Windows builds. | Jia Tan | 1 | -1/+5 |
2023-07-19 | liblzma: Suppress -Wunused-function warning. | Jia Tan | 1 | -0/+10 |
2023-07-18 | liblzma: Reword lzma_str_list_filters() documentation. | Jia Tan | 1 | -1/+1 |
2023-07-18 | liblzma: Improve comment in string_conversion.c. | Jia Tan | 1 | -2/+2 |
2023-07-18 | xz: Translate the second "%s: " in message.c since French needs "%s : ". | Lasse Collin | 1 | -1/+1 |
2023-07-18 | xz: Make "%s: %s" translatable because French needs "%s : %s". | Lasse Collin | 4 | -14/+18 |
2023-07-18 | liblzma: Tweak #if condition in memcmplen.h. | Lasse Collin | 1 | -2/+2 |
2023-07-18 | liblzma: Omit unnecessary parenthesis in a preprocessor directive. | Lasse Collin | 1 | -2/+2 |
2023-07-18 | xz: Update Authors list in a few files. | Jia Tan | 5 | -5/+10 |
2023-07-17 | xz: Fix typo in man page. | Jia Tan | 1 | -1/+1 |
2023-07-17 | xz: Minor clean up for coder.c | Jia Tan | 1 | -32/+21 |
2023-07-17 | xz: Update man page Authors and date. | Jia Tan | 1 | -2/+3 |
2023-07-17 | xz: Add a section to man page for robot mode --filters-help. | Jia Tan | 1 | -2/+30 |
2023-07-17 | xz: Slight reword in xz man page for consistency. | Jia Tan | 1 | -1/+1 |
2023-07-17 | xz: Reorder robot mode subsections in the man page. | Jia Tan | 1 | -96/+96 |
2023-07-17 | xz: Update man page for new --filters-help option. | Jia Tan | 1 | -0/+10 |
2023-07-17 | xz: Add a new --filters-help option. | Jia Tan | 3 | -0/+43 |
2023-07-17 | xz: Update the man page for --block-list and --filtersX | Jia Tan | 1 | -26/+80 |
2023-07-17 | xz: Update --long-help for the new --filtersX option. | Jia Tan | 1 | -2/+10 |
2023-07-17 | xz: Ignore filter chains that are set but never used in --block-list. | Jia Tan | 1 | -18/+48 |
2023-07-17 | xz: Set the Block size for mt encoding correctly. | Jia Tan | 1 | -1/+67 |
2023-07-17 | xz: Validate --flush-timeout for all specified filter chains. | Jia Tan | 1 | -8/+16 |
2023-07-17 | xz: Allows --block-list filters to scale down memory usage. | Jia Tan | 1 | -55/+214 |
2023-07-17 | xz: Do not include block splitting if encoders are disabled. | Jia Tan | 1 | -9/+20 |
2023-07-17 | xz: Free filters[] in debug mode. | Jia Tan | 1 | -0/+10 |
2023-07-17 | xz: Add a message if --block-list is used outside of xz compresssion. | Jia Tan | 1 | -0/+11 |
2023-07-17 | xz: Create command line options for filters[1-9]. | Jia Tan | 3 | -60/+230 |
2023-07-17 | xz: Use lzma_filters_free() in forget_filter_chain(). | Jia Tan | 1 | -8/+10 |
2023-07-17 | xz: Separate string to filter conversion into a helper function. | Jia Tan | 1 | -13/+20 |
2023-07-17 | xz: Update --long-help and man page for new --filters option. | Jia Tan | 2 | -5/+42 |
2023-07-17 | xz: Add --filters option to CLI. | Jia Tan | 3 | -4/+58 |
2023-07-08 | liblzma: Remove non-portable empty initializer. | Jia Tan | 1 | -1/+1 |
2023-06-29 | liblzma: Prevent uninitialzed warning in mt stream encoder. | Jia Tan | 1 | -1/+1 |
2023-06-28 | liblzma: Prevent warning for MSYS2 Windows build. | Jia Tan | 1 | -2/+4 |
2023-06-27 | liblzma: Add ifunc implementation to crc64_fast.c. | Lasse Collin | 1 | -9/+26 |
2023-05-13 | liblzma: Slightly rewords lzma_str_list_filters() documentation. | Jia Tan | 1 | -1/+1 |
2023-05-12 | liblzma: Adds lzma_nothrow to MicroLZMA API functions. | Jia Tan | 1 | -2/+3 |
2023-05-11 | liblzma: Exports lzma_mt_block_size() as an API function. | Jia Tan | 7 | -22/+61 |
2023-05-11 | liblzma: Creates IS_ENC_DICT_SIZE_VALID() macro. | Jia Tan | 2 | -3/+9 |
2023-05-04 | tuklib_integer.h: Reverts previous commit. | Jia Tan | 1 | -2/+2 |
2023-05-04 | tuklib_integer.h: Changes two other UINT_MAX == UINT32_MAX to >=. | Jia Tan | 1 | -2/+2 |
2023-05-03 | tuklib_integer.h: Fix a recent copypaste error in Clang detection. | Lasse Collin | 1 | -2/+2 |
2023-04-19 | Windows: Include <intrin.h> when needed. | Jia Tan | 2 | -0/+16 |
2023-04-19 | tuklib_integer: Use __builtin_clz() with Clang. | Jia Tan | 1 | -3/+3 |
2023-04-14 | liblzma: Update project maintainers in lzma.h. | Lasse Collin | 1 | -1/+1 |
2023-04-13 | liblzma: Cleans up old commented out code. | Jia Tan | 1 | -11/+0 |
2023-03-23 | Build: Removes redundant check for LZMA1 filter support. | Jia Tan | 1 | -4/+1 |
2023-03-19 | liblzma: Silence -Wsign-conversion in SSE2 code in memcmplen.h. | Lasse Collin | 1 | -1/+2 |
2023-03-18 | Change a few HTTP URLs to HTTPS. | Lasse Collin | 3 | -6/+6 |
2023-03-17 | liblzma: Remove note from lzma_options_bcj about the ARM64 exception. | Jia Tan | 1 | -1/+1 |
2023-03-17 | liblzma: Add set lzma.h as the main page for Doxygen documentation. | Jia Tan | 15 | -29/+2 |
2023-03-13 | liblzma: Defines masks for return values from lzma_index_checks(). | Jia Tan | 1 | -0/+23 |
2023-03-11 | xz: Simplify the error-label in Capsicum sandbox code. | Lasse Collin | 1 | -15/+12 |
2023-03-08 | xz: Make Capsicum sandbox more strict with stdin and stdout. | Lasse Collin | 1 | -0/+8 |
2023-03-08 | Revert: "Add warning if Capsicum sandbox system calls are unsupported." | Jia Tan | 1 | -6/+4 |
2023-03-07 | xz: Fix -Wunused-label in io_sandbox_enter(). | Jia Tan | 1 | -2/+2 |
2023-03-06 | xz: Add warning if Capsicum sandbox system calls are unsupported. | Jia Tan | 1 | -0/+2 |
2023-03-06 | xz: Skip Capsicum sandbox system calls when they are unsupported. | Jia Tan | 1 | -5/+17 |
2023-03-06 | xz: Reorder cap_enter() to beginning of capsicum sandbox code. | Jia Tan | 1 | -3/+3 |
2023-03-01 | liblzma: Clarify lzma_lzma_preset() documentation in lzma12.h. | Jia Tan | 1 | -0/+5 |
2023-02-24 | liblzma: Replace '\n' -> newline in filter.h documentation. | Jia Tan | 1 | -1/+1 |
2023-02-24 | liblzma: Shorten return description for two functions in filter.h. | Jia Tan | 1 | -6/+2 |
2023-02-24 | liblzma: Reword a few lines in filter.h | Jia Tan | 1 | -5/+5 |
2023-02-24 | liblzma: Improve documentation in filter.h. | Jia Tan | 1 | -83/+143 |
2023-02-23 | liblzma: Avoid null pointer + 0 (undefined behavior in C). | Lasse Collin | 10 | -23/+77 |
2023-02-23 | liblzma: Adjust container.h for consistency with filter.h. | Jia Tan | 1 | -11/+9 |
2023-02-23 | liblzma: Fix small typos and reword a few things in filter.h. | Jia Tan | 1 | -7/+6 |
2023-02-23 | liblzma: Convert list of flags in lzma_mt to bulleted list. | Jia Tan | 1 | -3/+6 |
2023-02-23 | liblzma: Fix typo in documentation in container.h | Jia Tan | 1 | -1/+1 |
2023-02-23 | liblzma: Improve documentation for container.h | Jia Tan | 1 | -53/+93 |
2023-02-16 | liblzma: Very minor API doc tweaks. | Lasse Collin | 4 | -14/+14 |
2023-02-17 | liblzma: Adjust spacing in doc headers in bcj.h. | Jia Tan | 1 | -7/+7 |
2023-02-17 | liblzma: Adjust documentation in bcj.h for consistent style. | Jia Tan | 1 | -21/+22 |
2023-02-17 | liblzma: Rename field => member in documentation. | Jia Tan | 7 | -95/+95 |
2023-02-16 | liblzma: Silence a warning from MSVC. | Lasse Collin | 1 | -1/+1 |
2023-02-16 | liblzma: Improve documentation for stream_flags.h | Jia Tan | 1 | -30/+46 |
2023-02-15 | liblzma: Improve documentation in lzma12.h. | Jia Tan | 1 | -9/+23 |
2023-02-15 | liblzma: Improve documentation in check.h. | Jia Tan | 1 | -13/+28 |
2023-02-15 | liblzma: Improve documentation in index.h | Jia Tan | 1 | -51/+126 |
2023-02-15 | liblzma: Reword a comment in index.h. | Jia Tan | 1 | -2/+2 |
2023-02-15 | liblzma: Omit lzma_index_iter's internal field from Doxygen docs. | Jia Tan | 1 | -1/+8 |
2023-02-14 | liblzma: Fix documentation for LZMA_MEMLIMIT_ERROR. | Jia Tan | 1 | -1/+1 |
2023-02-14 | liblzma: Improve documentation for base.h. | Jia Tan | 1 | -5/+25 |
2023-02-14 | liblzma: Add one more missing [out] annotation in vli.h | Jia Tan | 1 | -1/+1 |
2023-02-14 | liblzma: Minor improvements to vli.h. | Jia Tan | 1 | -6/+7 |
2023-02-10 | liblzma: Add comments for macros in delta.h. | Jia Tan | 1 | -0/+8 |
2023-02-10 | liblzma: Improve documentation in index_hash.h. | Jia Tan | 1 | -9/+27 |
2023-02-07 | xz: Improve the comment about start_time in mytime.c. | Lasse Collin | 1 | -5/+10 |
2023-02-04 | xz: Add a comment clarifying the use of start_time in mytime.c. | Jia Tan | 1 | -0/+5 |
2023-02-04 | liblzma: Improve documentation for version.h. | Jia Tan | 1 | -7/+22 |
2023-02-03 | liblzma: Fix bug in lzma_str_from_filters() not checking filters[] length. | Jia Tan | 1 | -0/+7 |
2023-02-03 | liblzma: Fix typos in comments in string_conversion.c. | Jia Tan | 1 | -2/+2 |
2023-02-03 | liblzma: Clarify block encoder and decoder documentation. | Jia Tan | 1 | -4/+11 |
2023-02-03 | Update lzma_block documentation for lzma_block_uncomp_encode(). | Jia Tan | 1 | -0/+3 |
2023-02-03 | liblzma: Minor edits to lzma_block header_size documentation. | Jia Tan | 1 | -1/+2 |
2023-02-03 | liblzma: Enumerate functions that read version in lzma_block. | Jia Tan | 1 | -2/+11 |
2023-02-03 | liblzma: Clarify comment in block.h. | Jia Tan | 1 | -1/+2 |
2023-02-03 | liblzma: Improve documentation for block.h. | Jia Tan | 1 | -21/+75 |
2023-02-01 | liblzma: Clarify a comment about LZMA_STR_NO_VALIDATION. | Jia Tan | 1 | -2/+3 |
2023-01-27 | xz: Use clock_gettime() even if CLOCK_MONOTONIC isn't available. | Lasse Collin | 2 | -5/+9 |
2023-01-27 | xz: Add SIGTSTP handler for progress indicator time keeping. | Lasse Collin | 4 | -2/+89 |
2023-01-26 | tuklib_physmem: Check for __has_warning before GCC version. | Lasse Collin | 1 | -3/+3 |
2023-01-24 | liblzma: Fix documentation in filter.h for lzma_str_to_filters() | Jia Tan | 1 | -1/+1 |
2023-01-24 | Revert "tuklib_common: Define __has_warning if it is not defined." | Lasse Collin | 1 | -7/+0 |
2023-01-24 | tuklib_physmem: Clean up the way -Wcast-function-type is silenced on Windows. | Lasse Collin | 1 | -4/+13 |
2023-01-24 | xz: Flip the return value of suffix_is_set to match the documentation. | Lasse Collin | 3 | -4/+5 |
2023-01-21 | xz: Refactor duplicated check for custom suffix when using --format=raw | Jia Tan | 3 | -18/+23 |
2023-01-21 | liblzma: Set documentation on all reserved fields to private. | Jia Tan | 7 | -0/+173 |
2023-01-20 | liblzma: Highlight liblzma API headers should not be included directly. | Jia Tan | 14 | -28/+42 |
2023-01-19 | tuklib_physmem: Silence warning from -Wcast-function-type on MinGW-w64. | Jia Tan | 1 | -0/+9 |
2023-01-19 | tuklib_common: Define __has_warning if it is not defined. | Jia Tan | 1 | -0/+7 |
2023-01-16 | xz: Add missing comment for coder_set_compression_settings() | Jia Tan | 1 | -1/+2 |
2023-01-16 | xz: Do not set compression settings with raw format in list mode. | Jia Tan | 1 | -1/+2 |
2023-01-12 | xz: Use ssize_t for the to-be-ignored return value from write(fd, ptr, 1). | Lasse Collin | 1 | -1/+1 |
2023-01-12 | xz: Silence warnings from -Wsign-conversion in a 32-bit build. | Lasse Collin | 2 | -3/+3 |
2023-01-12 | liblzma: Silence another warning from -Wsign-conversion in a 32-bit build. | Lasse Collin | 1 | -3/+4 |
2023-01-12 | liblzma: Silence a warning from -Wsign-conversion in a 32-bit build. | Lasse Collin | 1 | -2/+2 |
2023-01-12 | liblzma: Silence warnings from clang -Wconditional-uninitialized. | Lasse Collin | 2 | -4/+6 |
2023-01-12 | Fix warnings from clang -Wdocumentation. | Lasse Collin | 3 | -8/+4 |
2023-01-11 | xz: Fix warning -Wformat-nonliteral on clang in message.c. | Jia Tan | 1 | -0/+9 |
2023-01-10 | liblzma: CLMUL CRC64: Work around a bug in MSVC, second attempt. | Lasse Collin | 1 | -0/+18 |
2023-01-10 | Revert "liblzma: CLMUL CRC64: Workaround a bug in MSVC (VS2015-2022)." | Lasse Collin | 1 | -6/+0 |
2023-01-10 | sysdefs.h: Don't include strings.h anymore. | Lasse Collin | 1 | -6/+0 |
2023-01-10 | xz: Include <strings.h> in suffix.c if needed for strcasecmp(). | Lasse Collin | 1 | -0/+3 |
2023-01-10 | sysdefs.h: Fix a comment. | Lasse Collin | 1 | -1/+1 |
2023-01-10 | sysdefs.h: Don't include memory.h anymore even if it were available. | Lasse Collin | 1 | -6/+2 |
2023-01-09 | liblzma: CLMUL CRC64: Workaround a bug in MSVC (VS2015-2022). | Lasse Collin | 1 | -0/+6 |
2023-01-07 | Merge pull request #7 from tukaani-project/tuktest_index_hash | Jia Tan | 9 | -8/+20 |
2023-01-06 | Style: Change #if !defined() to #ifndef in mythread.h. | Jia Tan | 1 | -1/+1 |
2023-01-05 | liblzma: Remove common.h include from common/index.h. | Jia Tan | 4 | -2/+10 |
2023-01-02 | Bump version and soname for 5.5.0alpha.larhzu/v5.5.0alpha | Lasse Collin | 2 | -3/+3 |
2023-01-02 | Build: Only define HAVE_PROGRAM_INVOCATION_NAME if it is set to 1. | Jia Tan | 2 | -2/+2 |
2023-01-02 | liblzma: Add NULL check to lzma_index_hash_append. | Jia Tan | 1 | -1/+1 |
2023-01-02 | liblzma: Replaced hardcoded 0x0 index indicator byte with macro | Jia Tan | 6 | -5/+9 |
2022-12-30 | xz: Includes <time.h> and <sys/time.h> conditionally in mytime.c. | Jia Tan | 1 | -1/+3 |
2022-12-30 | liblzma: Includes sys/time.h conditionally in mythread | Jia Tan | 1 | -1/+7 |
2022-12-30 | Build: No longer require HAVE_DECL_CLOCK_MONOTONIC to always be set. | Jia Tan | 2 | -5/+4 |
2022-12-30 | liblzma: Update documentation for lzma_filter_encoder. | Jia Tan | 1 | -2/+5 |
2022-12-30 | liblzma: Fix lzma_microlzma_encoder() return value. | Jia Tan | 1 | -1/+2 |
2022-12-16 | liblzma: Update authors list in arm64.c. | Lasse Collin | 1 | -0/+1 |
2022-12-13 | Bump version to 5.4.0 and soname to 5.4.0.larhzu/v5.4.0 | Lasse Collin | 4 | -6/+6 |
2022-12-11 | xz: Rename --experimental-arm64 to --arm64. | Lasse Collin | 1 | -1/+1 |
2022-12-11 | liblzma: Change LZMA_FILTER_ARM64 to the official Filter ID 0x0A. | Lasse Collin | 1 | -5/+1 |
2022-12-08 | xz: Make args_info.files_name a const pointer. | Lasse Collin | 2 | -2/+2 |
2022-12-08 | xz: Don't modify argv[]. | Lasse Collin | 1 | -4/+19 |
2022-12-08 | liblzma: Check for unexpected NULL pointers in block_header_decode(). | Lasse Collin | 1 | -0/+4 |
2022-12-01 | Bump version number for 5.3.5beta.larhzu/v5.3.5beta | Lasse Collin | 3 | -12/+12 |
2022-12-01 | liblzma: Use __has_attribute(__symver__) to fix Clang detection. | Lasse Collin | 1 | -1/+14 |