diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2016-12-31 08:49:17 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2016-12-31 08:49:17 -0800 |
commit | b7fbee215674c3399212dffba1e71323056931d9 (patch) | |
tree | 4bbc5237bdd56b65dc4fb3f49bac359cec26f9cc /uncompr.c | |
parent | f3fcb92cf6c81b3ecd04b3ceb9243548b80c0cd9 (diff) | |
download | zlib-b7fbee215674c3399212dffba1e71323056931d9.tar.gz zlib-b7fbee215674c3399212dffba1e71323056931d9.tar.bz2 zlib-b7fbee215674c3399212dffba1e71323056931d9.zip |
Use a uniform approach for the largest value of an unsigned type.
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) | |||
32 | { | 32 | { |
33 | z_stream stream; | 33 | z_stream stream; |
34 | int err; | 34 | int err; |
35 | const uInt max = (uInt)0 - 1; | 35 | const uInt max = (uInt)-1; |
36 | uLong len, left; | 36 | uLong len, left; |
37 | Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ | 37 | Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ |
38 | 38 | ||