<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix missing header inclusion

INT_MAX is defined in &lt;limits.h&gt;; which isn't necessarily included by other of
the used headers, so in some libc implementations this causes a build error.

diff --git a/lib/zip_crypto_openssl.c.orig b/lib/zip_crypto_openssl.c
index 1cb004798b1c..74c1d87bc36c 100644
--- a/lib/zip_crypto_openssl.c
+++ b/lib/zip_crypto_openssl.c
@@ -31,6 +31,7 @@
   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
+#include &lt;limits.h&gt;
 #include &lt;stdlib.h&gt;
 
 #include "zipint.h"
</pre></body></html>