diff options
| author | Stefano Babic <sbabic@denx.de> | 2013-09-13 12:04:54 +0200 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2013-09-13 12:10:07 +0200 | 
| commit | c4a7ece02046f647019cc0aaddf530833a8db29c (patch) | |
| tree | 06342cd9b8cc41b95442a992fb38a1bc8671b05c /lib/gunzip.c | |
| parent | b5e7f1bc4b899ea34e838d5d60b3e6f8e479d0a9 (diff) | |
| parent | 8386ca8bea7a6a8469c3b6a99313afb642e6cbeb (diff) | |
| download | olio-uboot-2014.01-c4a7ece02046f647019cc0aaddf530833a8db29c.tar.xz olio-uboot-2014.01-c4a7ece02046f647019cc0aaddf530833a8db29c.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Conflicts:
	MAINTAINERS
	boards.cfg
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'lib/gunzip.c')
| -rw-r--r-- | lib/gunzip.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/gunzip.c b/lib/gunzip.c index 9959781b0..35abfb38e 100644 --- a/lib/gunzip.c +++ b/lib/gunzip.c @@ -89,13 +89,13 @@ int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,  	s.avail_out = dstlen;  	do {  		r = inflate(&s, Z_FINISH); -		if (r != Z_STREAM_END && r != Z_BUF_ERROR && stoponerr == 1) { +		if (stoponerr == 1 && r != Z_STREAM_END && +		    (s.avail_out == 0 || r != Z_BUF_ERROR)) {  			printf("Error: inflate() returned %d\n", r);  			inflateEnd(&s);  			return -1;  		}  		s.avail_in = *lenp - offset - (int)(s.next_out - (unsigned char*)dst); -		s.avail_out = dstlen;  	} while (r == Z_BUF_ERROR);  	*lenp = s.next_out - (unsigned char *) dst;  	inflateEnd(&s); |