bunzip2: fix off-by-one check
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 6 Oct 2013 20:53:14 +0000 (22:53 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 6 Oct 2013 20:53:14 +0000 (22:53 +0200)
commit932e233a491b6a5b9293ace04ef74667a95d739c
tree8c796251df17be67d8e7a285e916a8d29ddcda8b
parentcd256e1c407aa70dfefb7178ed2c0e4201f1aaf7
bunzip2: fix off-by-one check

stage3-armv7a_hardfp-20130209.tar.bz2, 149189948 bytes long,
md5sum b29ce23312e14eb15a143377d4a38473, was failing to unpack.

It so happened that this file has a run which exactly fills
the 90k buffer. The check was "size >= bufsize", apparently
it has to be ">".

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/libarchive/decompress_bunzip2.c