diff options
Diffstat (limited to 'infutil.c')
-rw-r--r-- | infutil.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* inflate_util.c -- data and routines common to blocks and codes | 1 | /* inflate_util.c -- data and routines common to blocks and codes |
2 | * Copyright (C) 1995-1996 Mark Adler | 2 | * Copyright (C) 1995 Mark Adler |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -12,7 +12,7 @@ | |||
12 | struct inflate_codes_state {int dummy;}; /* for buggy compilers */ | 12 | struct inflate_codes_state {int dummy;}; /* for buggy compilers */ |
13 | 13 | ||
14 | /* And'ing with mask[n] masks the lower n bits */ | 14 | /* And'ing with mask[n] masks the lower n bits */ |
15 | uInt inflate_mask[17] = { | 15 | uInt inflate_mask[] = { |
16 | 0x0000, | 16 | 0x0000, |
17 | 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, | 17 | 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, |
18 | 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff | 18 | 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff |
@@ -43,7 +43,7 @@ int r; | |||
43 | 43 | ||
44 | /* update check information */ | 44 | /* update check information */ |
45 | if (s->checkfn != Z_NULL) | 45 | if (s->checkfn != Z_NULL) |
46 | z->adler = s->check = (*s->checkfn)(s->check, q, n); | 46 | s->check = (*s->checkfn)(s->check, q, n); |
47 | 47 | ||
48 | /* copy as far as end of window */ | 48 | /* copy as far as end of window */ |
49 | zmemcpy(p, q, n); | 49 | zmemcpy(p, q, n); |
@@ -69,7 +69,7 @@ int r; | |||
69 | 69 | ||
70 | /* update check information */ | 70 | /* update check information */ |
71 | if (s->checkfn != Z_NULL) | 71 | if (s->checkfn != Z_NULL) |
72 | z->adler = s->check = (*s->checkfn)(s->check, q, n); | 72 | s->check = (*s->checkfn)(s->check, q, n); |
73 | 73 | ||
74 | /* copy */ | 74 | /* copy */ |
75 | zmemcpy(p, q, n); | 75 | zmemcpy(p, q, n); |