This patch tries to allow the unzipping of concatenated gzip files.<br> Test:<br><br>% echo First > first<br>% gzip first<br>% echo Second > second<br>% gzip second<br>% cat first.gz second.gz > total.gz<br>% ./busybox gunzip
total.gz<br>% cat total<br>First<br>Second<br>% <br><br> If there are no errors, this should address Debian's <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=402482">bug #402482</a>.<br> The feature costs 400 bytes on i386. I've removed a couple of
<br> initializations that (look) useless (to me). I've also added a feature<br> for message "decompression OK, trailing garbage ignored".<br><br> Loïc<br>