Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 281955
Collapse All | Expand All

(-)a/Bzip2.xs (-2 / +1 lines)
Lines 753-759 bzinflate (s, buf, output) Link Here
753
753
754
        if (s->stream.avail_out == 0) {
754
        if (s->stream.avail_out == 0) {
755
	    /* out of space in the output buffer so make it bigger */
755
	    /* out of space in the output buffer so make it bigger */
756
            Sv_Grow(output, SvLEN(output) + bufinc) ;
756
            Sv_Grow(output, SvLEN(output) + bufinc +1) ;
757
            cur_length += increment ;
757
            cur_length += increment ;
758
            s->stream.next_out = (char*) SvPVbyte_nolen(output) + cur_length ;
758
            s->stream.next_out = (char*) SvPVbyte_nolen(output) + cur_length ;
759
            increment = bufinc ;
759
            increment = bufinc ;
760
- 

Return to bug 281955