8971d00f6c
* tar: clean up linkpath between entries * tar: fix memory leaks when processing symlinks or parsing pax headers * iso: be more cautious about parsing ISO-9660 timestamps - Version 3.7.5 changes: * fix multiple vulnerabilities identified by SAST * cpio: ignore out-of-range gid/uid/size/ino and harden AFIO parsing * lzop: prevent integer overflow * rar4: protect copy_from_lzss_window_to_unp() (CVE-2024-20696, bsc#1225971) * rar4: fix CVE-2024-26256 (CVE-2024-26256, bsc#1225972) * rar4: fix OOB in delta and audio filter * rar4: fix out of boundary access with large files * rar4: add boundary checks to rgb filter * rar4: fix OOB access with unicode filenames * rar5: clear 'data ready' cache on window buffer reallocs * rpm: calculate huge header sizes correctly * unzip: unify EOF handling * util: fix out of boundary access in mktemp functions * uu: stop processing if lines are too long * 7zip: fix issue when skipping first file in 7zip archive that is a multiple of 65536 bytes * ar: fix archive entries having no type * lha: do not allow negative file sizes * lha: fix integer truncation on 32-bit systems * shar: check strdup return value * rar5: don't try to read rediculously long names * xar: fix another infinite loop and expat error handling * many Windows fixes, cleanups and improvements - Drop fix-soversion.patch, fix-bsdunzip-test.patch * Fixed upstream OBS-URL: https://build.opensuse.org/package/show/Archiving/libarchive?expand=0&rev=128
20 lines
674 B
Diff
20 lines
674 B
Diff
commit 64e2e88ec326dd37fcb85c9a9d21fa43444a0a59
|
|
Author: Bernhard M. Wiedemann <bwiedemann@suse.de>
|
|
Date: Wed May 22 10:13:47 2024 +0200
|
|
|
|
Fix test failure on openSUSE:Leap:15.5
|
|
|
|
diff --git a/unzip/test/test_I.c b/unzip/test/test_I.c
|
|
index 5d31ce8d..92e5ce59 100644
|
|
--- a/unzip/test/test_I.c
|
|
+++ b/unzip/test/test_I.c
|
|
@@ -45,7 +45,7 @@ DEFINE_TEST(test_I)
|
|
#endif
|
|
|
|
extract_reference_file(reffile);
|
|
- r = systemf("%s -I UTF-8 %s >test.out 2>test.err", testprog, reffile);
|
|
+ r = systemf("env -uLC_ALL LC_CTYPE=en_US.UTF-8 %s -I UTF-8 %s >test.out 2>test.err", testprog, reffile);
|
|
assertEqualInt(0, r);
|
|
assertNonEmptyFile("test.out");
|
|
assertEmptyFile("test.err");
|