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