diff options
| author | David Seifert <soap@gentoo.org> | 2022-07-27 22:09:43 +0200 |
|---|---|---|
| committer | David Seifert <soap@gentoo.org> | 2022-07-27 22:09:43 +0200 |
| commit | dd6485e89a94392dfbcf012ca16cadc00f2983ee (patch) | |
| tree | 2e815fd172221e8490f0b44b3de17f7605350ea6 /dev-libs/apr/files | |
| parent | 5014ee8b14a0ba2b84e283c9dfb1213727cb62dd (diff) | |
| download | gentoo-dd6485e89a94392dfbcf012ca16cadc00f2983ee.tar.gz gentoo-dd6485e89a94392dfbcf012ca16cadc00f2983ee.tar.bz2 gentoo-dd6485e89a94392dfbcf012ca16cadc00f2983ee.zip | |
dev-libs/apr: drop 1.6.3-r7, 1.6.5-r4
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/apr/files')
| -rw-r--r-- | dev-libs/apr/files/apr-1.6.3-fix-overflow-check-in-overflow_strfsize.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-libs/apr/files/apr-1.6.3-fix-overflow-check-in-overflow_strfsize.patch b/dev-libs/apr/files/apr-1.6.3-fix-overflow-check-in-overflow_strfsize.patch deleted file mode 100644 index d6e1f54fc074..000000000000 --- a/dev-libs/apr/files/apr-1.6.3-fix-overflow-check-in-overflow_strfsize.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bz.apache.org/bugzilla/show_bug.cgi?id=62056 - ---- apr-1.6.3.orig/test/teststr.c -+++ apr-1.6.3.orig/test/teststr.c -@@ -307,10 +307,15 @@ - for (; off < 999999999; off += 999) { - apr_strfsize(off, buf); - } -- for (off = 1; off < LONG_MAX && off > 0; off *= 2) { -+ -+ off = 1; -+ while (1) { - apr_strfsize(off, buf); - apr_strfsize(off + 1, buf); - apr_strfsize(off - 1, buf); -+ if (off > LONG_MAX / 2) -+ break; -+ off *= 2; - } - - ABTS_ASSERT(tc, "strfsize overflowed", buf[5] == '$'); |
