@@ -59,10 +59,10 @@ void Z_INTERNAL INFLATE_FAST(PREFIX3(stream) *strm, uint32_t start) {
5959 unsigned char * beg ; /* inflate()'s initial strm->next_out */
6060 unsigned char * end ; /* while out < end, enough space available */
6161 unsigned char * safe ; /* can use chunkcopy provided out < safe */
62+ unsigned char * window ; /* allocated sliding window, if wsize != 0 */
6263 unsigned wsize ; /* window size or zero if not using window */
6364 unsigned whave ; /* valid bytes in the window */
6465 unsigned wnext ; /* window write index */
65- unsigned char * window ; /* allocated sliding window, if wsize != 0 */
6666
6767 /* hold is a local copy of strm->hold. By default, hold satisfies the same
6868 invariants that strm->hold does, namely that (hold >> bits) == 0. This
@@ -101,18 +101,18 @@ void Z_INTERNAL INFLATE_FAST(PREFIX3(stream) *strm, uint32_t start) {
101101 with (1<<bits)-1 to drop those excess bits so that, on function exit, we
102102 keep the invariant that (state->hold >> state->bits) == 0.
103103 */
104- uint64_t hold ; /* local strm->hold */
105104 unsigned bits ; /* local strm->bits */
106- code const * lcode ; /* local strm->lencode */
107- code const * dcode ; /* local strm->distcode */
105+ uint64_t hold ; /* local strm->hold */
108106 unsigned lmask ; /* mask for first level of length codes */
109107 unsigned dmask ; /* mask for first level of distance codes */
108+ code const * lcode ; /* local strm->lencode */
109+ code const * dcode ; /* local strm->distcode */
110110 const code * here ; /* retrieved table entry */
111111 unsigned op ; /* code bits, operation, extra bits, or */
112112 /* window position, window bytes to copy */
113113 unsigned len ; /* match length, unused bytes */
114- unsigned dist ; /* match distance */
115114 unsigned char * from ; /* where to copy match from */
115+ unsigned dist ; /* match distance */
116116 unsigned extra_safe ; /* copy chunks safely in all cases */
117117
118118 /* copy state to local variables */
0 commit comments