gzip: unbreak FEATURE_GZIP_LEVELS, closes 11171
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 24 Jul 2018 19:12:58 +0000 (21:12 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 24 Jul 2018 19:12:58 +0000 (21:12 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/gzip.c

index c5a1fe9b4ec2558a9b2d9da7e0e58d3e0947f793..74d5d685fc64cdb1b781243dfd21af4315c64934 100644 (file)
@@ -333,12 +333,6 @@ struct globals {
        /* DECLARE(Pos, head, 1<<HASH_BITS); */
 #define head (G1.prev + WSIZE) /* hash head (see deflate.c) */
 
-/* =========================================================================== */
-/* all members below are zeroed out in pack_gzip() for each next file */
-
-       uint32_t crc;   /* shift register contents */
-       /*uint32_t *crc_32_tab;*/
-
 #if ENABLE_FEATURE_GZIP_LEVELS
        unsigned max_chain_length;
        unsigned max_lazy_match;
@@ -350,6 +344,12 @@ struct globals {
 #define nice_match      (G1.nice_match)
 #endif
 
+/* =========================================================================== */
+/* all members below are zeroed out in pack_gzip() for each next file */
+
+       uint32_t crc;   /* shift register contents */
+       /*uint32_t *crc_32_tab;*/
+
 /* window position at the beginning of the current output block. Gets
  * negative when the window is moved backwards.
  */