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