Blame SOURCES/unzip-zipbomb-part1.patch

9ae17e
From 41beb477c5744bc396fa1162ee0c14218ec12213 Mon Sep 17 00:00:00 2001
9ae17e
From: Mark Adler <madler@alumni.caltech.edu>
9ae17e
Date: Mon, 27 May 2019 08:20:32 -0700
9ae17e
Subject: [PATCH] Fix bug in undefer_input() that misplaced the input state.
9ae17e
9ae17e
---
9ae17e
 fileio.c | 4 +++-
9ae17e
 1 file changed, 3 insertions(+), 1 deletion(-)
9ae17e
9ae17e
diff --git a/fileio.c b/fileio.c
9ae17e
index c042987..bc00d74 100644
9ae17e
--- a/fileio.c
9ae17e
+++ b/fileio.c
9ae17e
@@ -530,8 +530,10 @@ void undefer_input(__G)
9ae17e
          * This condition was checked when G.incnt_leftover was set > 0 in
9ae17e
          * defer_leftover_input(), and it is NOT allowed to touch G.csize
9ae17e
          * before calling undefer_input() when (G.incnt_leftover > 0)
9ae17e
-         * (single exception: see read_byte()'s  "G.csize <= 0" handling) !!
9ae17e
+         * (single exception: see readbyte()'s  "G.csize <= 0" handling) !!
9ae17e
          */
9ae17e
+        if (G.csize < 0L)
9ae17e
+            G.csize = 0L;
9ae17e
         G.incnt = G.incnt_leftover + (int)G.csize;
9ae17e
         G.inptr = G.inptr_leftover - (int)G.csize;
9ae17e
         G.incnt_leftover = 0;