From 4961241c09ff68d7eed4e36916885ca6a1e73b48 Mon Sep 17 00:00:00 2001 From: ethaninfinity Date: Mon, 6 Jun 2022 14:53:03 -0400 Subject: [PATCH 1/3] Removed pragma warnings --- contrib/unzip/crypt.c | 9 --------- contrib/unzip/ioapi.c | 3 --- contrib/unzip/unzip.c | 11 +---------- 3 files changed, 1 insertion(+), 22 deletions(-) diff --git a/contrib/unzip/crypt.c b/contrib/unzip/crypt.c index 299ce03d2..22436baab 100644 --- a/contrib/unzip/crypt.c +++ b/contrib/unzip/crypt.c @@ -43,11 +43,6 @@ #include "crypt.h" -#ifdef _WIN32 -# pragma warning(push) -# pragma warning(disable : 4244) -#endif // _WIN32 - /***************************************************************************/ #define CRC32(c, b) ((*(pcrc_32_tab+(((uint32_t)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) @@ -164,8 +159,4 @@ int crypthead(const char *passwd, uint8_t *buf, int buf_size, uint32_t *pkeys, return n; } -#ifdef _WIN32 -# pragma warning(pop) -#endif // _WIN32 - /***************************************************************************/ diff --git a/contrib/unzip/ioapi.c b/contrib/unzip/ioapi.c index 30a296d0f..99295f0f8 100644 --- a/contrib/unzip/ioapi.c +++ b/contrib/unzip/ioapi.c @@ -23,8 +23,6 @@ #ifdef _WIN32 # define snprintf _snprintf -# pragma warning(push) -# pragma warning(disable : 4131 4100) # ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wunused-parameter" @@ -358,7 +356,6 @@ void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def) } #ifdef _WIN32 -# pragma warning(pop) # ifdef __clang__ # pragma clang diagnostic pop # endif diff --git a/contrib/unzip/unzip.c b/contrib/unzip/unzip.c index f1eddeeda..311a6ae03 100644 --- a/contrib/unzip/unzip.c +++ b/contrib/unzip/unzip.c @@ -73,11 +73,6 @@ # define TRYFREE(p) {if (p) free(p);} #endif -#ifdef _WIN32 -# pragma warning(push) -# pragma warning(disable : 4131 4244 4189 4245) -#endif // _WIN32 - const char unz_copyright[] = " unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"; @@ -1993,8 +1988,4 @@ extern int ZEXPORT unzEndOfFile(unzFile file) if (s->pfile_in_zip_read->rest_read_uncompressed == 0) return 1; return 0; -} - -#ifdef _WIN32 -# pragma warning(pop) -#endif // _WIN32 \ No newline at end of file +} \ No newline at end of file From c5b6b26b8b1b19839504f8f76b2fa030c1bc9cd3 Mon Sep 17 00:00:00 2001 From: ethaninfinity Date: Tue, 7 Jun 2022 11:27:12 -0400 Subject: [PATCH 2/3] Revert "Removed pragma warnings" This reverts commit 4961241c09ff68d7eed4e36916885ca6a1e73b48. --- contrib/unzip/crypt.c | 9 +++++++++ contrib/unzip/ioapi.c | 3 +++ contrib/unzip/unzip.c | 11 ++++++++++- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/contrib/unzip/crypt.c b/contrib/unzip/crypt.c index 22436baab..299ce03d2 100644 --- a/contrib/unzip/crypt.c +++ b/contrib/unzip/crypt.c @@ -43,6 +43,11 @@ #include "crypt.h" +#ifdef _WIN32 +# pragma warning(push) +# pragma warning(disable : 4244) +#endif // _WIN32 + /***************************************************************************/ #define CRC32(c, b) ((*(pcrc_32_tab+(((uint32_t)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) @@ -159,4 +164,8 @@ int crypthead(const char *passwd, uint8_t *buf, int buf_size, uint32_t *pkeys, return n; } +#ifdef _WIN32 +# pragma warning(pop) +#endif // _WIN32 + /***************************************************************************/ diff --git a/contrib/unzip/ioapi.c b/contrib/unzip/ioapi.c index 99295f0f8..30a296d0f 100644 --- a/contrib/unzip/ioapi.c +++ b/contrib/unzip/ioapi.c @@ -23,6 +23,8 @@ #ifdef _WIN32 # define snprintf _snprintf +# pragma warning(push) +# pragma warning(disable : 4131 4100) # ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wunused-parameter" @@ -356,6 +358,7 @@ void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def) } #ifdef _WIN32 +# pragma warning(pop) # ifdef __clang__ # pragma clang diagnostic pop # endif diff --git a/contrib/unzip/unzip.c b/contrib/unzip/unzip.c index 311a6ae03..f1eddeeda 100644 --- a/contrib/unzip/unzip.c +++ b/contrib/unzip/unzip.c @@ -73,6 +73,11 @@ # define TRYFREE(p) {if (p) free(p);} #endif +#ifdef _WIN32 +# pragma warning(push) +# pragma warning(disable : 4131 4244 4189 4245) +#endif // _WIN32 + const char unz_copyright[] = " unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"; @@ -1988,4 +1993,8 @@ extern int ZEXPORT unzEndOfFile(unzFile file) if (s->pfile_in_zip_read->rest_read_uncompressed == 0) return 1; return 0; -} \ No newline at end of file +} + +#ifdef _WIN32 +# pragma warning(pop) +#endif // _WIN32 \ No newline at end of file From d018c3b55577da5cf2affc1635109690d1e6d143 Mon Sep 17 00:00:00 2001 From: ethaninfinity Date: Tue, 7 Jun 2022 11:42:09 -0400 Subject: [PATCH 3/3] Added back pragma warnings and changed to be MSVC-specific --- contrib/unzip/crypt.c | 8 ++++---- contrib/unzip/ioapi.c | 6 ++++-- contrib/unzip/unzip.c | 8 ++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/contrib/unzip/crypt.c b/contrib/unzip/crypt.c index 299ce03d2..4cc731b3e 100644 --- a/contrib/unzip/crypt.c +++ b/contrib/unzip/crypt.c @@ -43,10 +43,10 @@ #include "crypt.h" -#ifdef _WIN32 +#ifdef _MSC_VER # pragma warning(push) # pragma warning(disable : 4244) -#endif // _WIN32 +#endif // _MSC_VER /***************************************************************************/ @@ -164,8 +164,8 @@ int crypthead(const char *passwd, uint8_t *buf, int buf_size, uint32_t *pkeys, return n; } -#ifdef _WIN32 +#ifdef _MSC_VER # pragma warning(pop) -#endif // _WIN32 +#endif // _MSC_VER /***************************************************************************/ diff --git a/contrib/unzip/ioapi.c b/contrib/unzip/ioapi.c index 30a296d0f..d9ae01e7d 100644 --- a/contrib/unzip/ioapi.c +++ b/contrib/unzip/ioapi.c @@ -23,8 +23,10 @@ #ifdef _WIN32 # define snprintf _snprintf +#ifdef _MSC_VER # pragma warning(push) # pragma warning(disable : 4131 4100) +#endif # ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wunused-parameter" @@ -357,9 +359,9 @@ void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def) pzlib_filefunc_def->opaque = NULL; } -#ifdef _WIN32 +#ifdef _MSC_VER # pragma warning(pop) # ifdef __clang__ # pragma clang diagnostic pop # endif -#endif // _WIN32 +#endif // _MSC_VER diff --git a/contrib/unzip/unzip.c b/contrib/unzip/unzip.c index f1eddeeda..b2f045b0a 100644 --- a/contrib/unzip/unzip.c +++ b/contrib/unzip/unzip.c @@ -73,10 +73,10 @@ # define TRYFREE(p) {if (p) free(p);} #endif -#ifdef _WIN32 +#ifdef _MSC_VER # pragma warning(push) # pragma warning(disable : 4131 4244 4189 4245) -#endif // _WIN32 +#endif // _MSC_VER const char unz_copyright[] = " unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"; @@ -1995,6 +1995,6 @@ extern int ZEXPORT unzEndOfFile(unzFile file) return 0; } -#ifdef _WIN32 +#ifdef _MSC_VER # pragma warning(pop) -#endif // _WIN32 \ No newline at end of file +#endif // _MSC_VER \ No newline at end of file