annotate src/zlib-1.2.8/uncompr.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 /* uncompr.c -- decompress a memory buffer
cannam@128 2 * Copyright (C) 1995-2003, 2010 Jean-loup Gailly.
cannam@128 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@128 4 */
cannam@128 5
cannam@128 6 /* @(#) $Id$ */
cannam@128 7
cannam@128 8 #define ZLIB_INTERNAL
cannam@128 9 #include "zlib.h"
cannam@128 10
cannam@128 11 /* ===========================================================================
cannam@128 12 Decompresses the source buffer into the destination buffer. sourceLen is
cannam@128 13 the byte length of the source buffer. Upon entry, destLen is the total
cannam@128 14 size of the destination buffer, which must be large enough to hold the
cannam@128 15 entire uncompressed data. (The size of the uncompressed data must have
cannam@128 16 been saved previously by the compressor and transmitted to the decompressor
cannam@128 17 by some mechanism outside the scope of this compression library.)
cannam@128 18 Upon exit, destLen is the actual size of the compressed buffer.
cannam@128 19
cannam@128 20 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
cannam@128 21 enough memory, Z_BUF_ERROR if there was not enough room in the output
cannam@128 22 buffer, or Z_DATA_ERROR if the input data was corrupted.
cannam@128 23 */
cannam@128 24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
cannam@128 25 Bytef *dest;
cannam@128 26 uLongf *destLen;
cannam@128 27 const Bytef *source;
cannam@128 28 uLong sourceLen;
cannam@128 29 {
cannam@128 30 z_stream stream;
cannam@128 31 int err;
cannam@128 32
cannam@128 33 stream.next_in = (z_const Bytef *)source;
cannam@128 34 stream.avail_in = (uInt)sourceLen;
cannam@128 35 /* Check for source > 64K on 16-bit machine: */
cannam@128 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
cannam@128 37
cannam@128 38 stream.next_out = dest;
cannam@128 39 stream.avail_out = (uInt)*destLen;
cannam@128 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
cannam@128 41
cannam@128 42 stream.zalloc = (alloc_func)0;
cannam@128 43 stream.zfree = (free_func)0;
cannam@128 44
cannam@128 45 err = inflateInit(&stream);
cannam@128 46 if (err != Z_OK) return err;
cannam@128 47
cannam@128 48 err = inflate(&stream, Z_FINISH);
cannam@128 49 if (err != Z_STREAM_END) {
cannam@128 50 inflateEnd(&stream);
cannam@128 51 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
cannam@128 52 return Z_DATA_ERROR;
cannam@128 53 return err;
cannam@128 54 }
cannam@128 55 *destLen = stream.total_out;
cannam@128 56
cannam@128 57 err = inflateEnd(&stream);
cannam@128 58 return err;
cannam@128 59 }