View | Details | Raw Unified | Return to bug 194911
Collapse All | Expand All

(-)contrib/libarchive/libarchive/archive_read_support_format_cab.c (-1 / +2 lines)
Lines 2759-2765 Link Here
2759
	int at_max_bits = at->max_bits;
2759
	int at_max_bits = at->max_bits;
2760
	int lt_max_bits = lt->max_bits;
2760
	int lt_max_bits = lt->max_bits;
2761
	int mt_max_bits = mt->max_bits;
2761
	int mt_max_bits = mt->max_bits;
2762
	int c, copy_len = ds->copy_len, copy_pos = ds->copy_pos;
2762
	int copy_len = ds->copy_len, copy_pos = ds->copy_pos;
2763
	int w_pos = ds->w_pos, w_mask = ds->w_mask, w_size = ds->w_size;
2763
	int w_pos = ds->w_pos, w_mask = ds->w_mask, w_size = ds->w_size;
2764
	int length_header = ds->length_header;
2764
	int length_header = ds->length_header;
2765
	int offset_bits = ds->offset_bits;
2765
	int offset_bits = ds->offset_bits;
Lines 2767-2772 Link Here
2767
	int r0 = ds->r0, r1 = ds->r1, r2 = ds->r2;
2767
	int r0 = ds->r0, r1 = ds->r1, r2 = ds->r2;
2768
	int state = ds->state;
2768
	int state = ds->state;
2769
	char block_type = ds->block_type;
2769
	char block_type = ds->block_type;
2770
	unsigned int c = 0;
2770
2771
2771
	for (;;) {
2772
	for (;;) {
2772
		switch (state) {
2773
		switch (state) {
(-)contrib/libarchive/libarchive/archive_read_support_format_lha.c (-1 / +2 lines)
Lines 2283-2293 Link Here
2283
	unsigned char *w_buff = ds->w_buff;
2283
	unsigned char *w_buff = ds->w_buff;
2284
	unsigned char *lt_bitlen = lt->bitlen;
2284
	unsigned char *lt_bitlen = lt->bitlen;
2285
	unsigned char *pt_bitlen = pt->bitlen;
2285
	unsigned char *pt_bitlen = pt->bitlen;
2286
	int blocks_avail = ds->blocks_avail, c = 0;
2286
	int blocks_avail = ds->blocks_avail;
2287
	int copy_len = ds->copy_len, copy_pos = ds->copy_pos;
2287
	int copy_len = ds->copy_len, copy_pos = ds->copy_pos;
2288
	int w_pos = ds->w_pos, w_mask = ds->w_mask, w_size = ds->w_size;
2288
	int w_pos = ds->w_pos, w_mask = ds->w_mask, w_size = ds->w_size;
2289
	int lt_max_bits = lt->max_bits, pt_max_bits = pt->max_bits;
2289
	int lt_max_bits = lt->max_bits, pt_max_bits = pt->max_bits;
2290
	int state = ds->state;
2290
	int state = ds->state;
2291
	unsigned int c = 0;
2291
2292
2292
	if (ds->w_remaining > 0) {
2293
	if (ds->w_remaining > 0) {
2293
		if (!lzh_copy_from_window(strm, ds))
2294
		if (!lzh_copy_from_window(strm, ds))

Return to bug 194911