From ed2ada78a6778ce8c6fbf61184e7d0cff2eeb501 Mon Sep 17 00:00:00 2001 From: Mostyn Bramley-Moore Date: Tue, 15 Jul 2025 22:13:10 +0200 Subject: [PATCH] 7z: add liblzma EOPM reference This is useful for developers trying to understand the 7z read support code. --- libarchive/archive_read_support_format_7zip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libarchive/archive_read_support_format_7zip.c b/libarchive/archive_read_support_format_7zip.c index 846261287..595462733 100644 --- a/libarchive/archive_read_support_format_7zip.c +++ b/libarchive/archive_read_support_format_7zip.c @@ -1393,7 +1393,8 @@ init_decompression(struct archive_read *a, struct _7zip *zip, * size to liblzma when using lzma_raw_decoder() liblzma * could correctly deal with BCJ+LZMA. But unfortunately * there is no way to do that. - * Discussion about this can be found at XZ Utils forum. + * + * Reference: https://web.archive.org/web/20240405171610/https://www.mail-archive.com/xz-devel@tukaani.org/msg00373.html */ if (coder2 != NULL) { zip->codec2 = coder2->codec; -- 2.47.2