Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/archival/libarchive/unxz/xz_dec_lzma2.c

    r2725 r3621  
    408408        b->out_pos += copy_size;
    409409        b->in_pos += copy_size;
    410 
    411410    }
    412411}
     
    973972            tmp = b->in[b->in_pos++];
    974973
     974            if (tmp == 0x00)
     975                return XZ_STREAM_END;
     976
    975977            if (tmp >= 0xE0 || tmp == 0x01) {
    976978                s->lzma2.need_props = true;
     
    994996                    s->lzma2.next_sequence
    995997                            = SEQ_PROPERTIES;
    996 
    997998                } else if (s->lzma2.need_props) {
    998999                    return XZ_DATA_ERROR;
    999 
    10001000                } else {
    10011001                    s->lzma2.next_sequence
     
    10051005                }
    10061006            } else {
    1007                 if (tmp == 0x00)
    1008                     return XZ_STREAM_END;
    1009 
    10101007                if (tmp > 0x02)
    10111008                    return XZ_DATA_ERROR;
     
    10821079                rc_reset(&s->rc);
    10831080                s->lzma2.sequence = SEQ_CONTROL;
    1084 
    10851081            } else if (b->out_pos == b->out_size
    10861082                    || (b->in_pos == b->in_size
Note: See TracChangeset for help on using the changeset viewer.