Blame SOURCES/libarchive-3.3.3-Fix-size-filed-in-pax-header.patch

76afd8
From afef3d7fc131df0dac09a46b8673898860a193db Mon Sep 17 00:00:00 2001
76afd8
From: Zdenek Zambersky <zzambers@redhat.com>
76afd8
Date: Tue, 11 Jan 2022 14:43:27 +0100
76afd8
Subject: [PATCH] Fixed size filed in pax header
76afd8
76afd8
---
76afd8
 libarchive/archive_write_set_format_pax.c | 10 +++++++---
76afd8
 1 file changed, 7 insertions(+), 3 deletions(-)
76afd8
76afd8
diff --git a/libarchive/archive_write_set_format_pax.c b/libarchive/archive_write_set_format_pax.c
76afd8
index a2b27107..52911491 100644
76afd8
--- a/libarchive/archive_write_set_format_pax.c
76afd8
+++ b/libarchive/archive_write_set_format_pax.c
76afd8
@@ -1028,10 +1028,8 @@ archive_write_pax_header(struct archive_write *a,
76afd8
 	archive_string_init(&entry_name);
76afd8
 	archive_strcpy(&entry_name, archive_entry_pathname(entry_main));
76afd8
 
76afd8
-	/* If file size is too large, add 'size' to pax extended attrs. */
76afd8
+	/* If file size is too large, we need pax extended attrs. */
76afd8
 	if (archive_entry_size(entry_main) >= (((int64_t)1) << 33)) {
76afd8
-		add_pax_attr_int(&(pax->pax_header), "size",
76afd8
-		    archive_entry_size(entry_main));
76afd8
 		need_extension = 1;
76afd8
 	}
76afd8
 
76afd8
@@ -1347,6 +1345,12 @@ archive_write_pax_header(struct archive_write *a,
76afd8
 		    mapsize + pax->sparse_map_padding + sparse_total);
76afd8
 	}
76afd8
 
76afd8
+	/* If file size is too large, add 'size' to pax extended attrs. */
76afd8
+	if (archive_entry_size(entry_main) >= (((int64_t)1) << 33)) {
76afd8
+		add_pax_attr_int(&(pax->pax_header), "size",
76afd8
+		    archive_entry_size(entry_main));
76afd8
+	}
76afd8
+
76afd8
 	/* Format 'ustar' header for main entry.
76afd8
 	 *
76afd8
 	 * The trouble with file size: If the reader can't understand
76afd8
-- 
76afd8
2.34.3
76afd8