From 050cedd751374ec05b53dacfd7db7f56a56aea2c Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Thu, 4 Feb 2021 13:43:37 +0100
Subject: [PATCH] decompress_iob(): Silence compiler warning when compiling
 with NDEBUG

---
 parsers.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/parsers.c b/parsers.c
index 0c99091e..35e2c330 100644
--- a/parsers.c
+++ b/parsers.c
@@ -778,8 +778,9 @@ jb_err decompress_iob(struct client_state *csp)
       }
       else
       {
+#ifndef NDEBUG
          char *oldnext_out = (char *)zstr.next_out;
-
+#endif
          /*
           * Update the fields for inflate() to use the new
           * buffer, which may be in a location different from
-- 
2.49.0