in io.c (rev 188), line 420:
bsize = def_bsize;
inbuf = malloc(bsize);
if( !inbuf ) {
def_bsize is not longer initialized (du to stream patch changed) so bsize is
initialized with
garbage.
I think you should change the line 395:
bsize = get_rsize(x);
into
def_bsize = get_rsize(x);
as def_bsize is reused later in this function and is expected to contain the
archive rsize default
value.
Original issue reported on code.google.com by jddu...@gmail.com on 16 Oct 2007 at 7:10
Original issue reported on code.google.com by
jddu...@gmail.com
on 16 Oct 2007 at 7:10