From bdde4e09d21edff02ea5093b7f6eccbf166b272f Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:08:07 -0700 Subject: zlib 0.92 --- uncompr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'uncompr.c') diff --git a/uncompr.c b/uncompr.c index 4c8b3af..c76286c 100644 --- a/uncompr.c +++ b/uncompr.c @@ -3,7 +3,7 @@ * For conditions of distribution and use, see copyright notice in zlib.h */ -/* $Id: uncompr.c,v 1.4 1995/04/10 16:22:22 jloup Exp $ */ +/* $Id: uncompr.c,v 1.5 1995/05/03 17:27:12 jloup Exp $ */ #include "zlib.h" @@ -48,8 +48,8 @@ int uncompress (dest, destLen, source, sourceLen) err = inflate(&stream, Z_FINISH); if (err != Z_STREAM_END) { - inflateEnd(&stream); - return err; + inflateEnd(&stream); + return err; } *destLen = stream.total_out; -- cgit v1.2.3-55-g6feb