mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Fixed goto emulation in inffast
This commit is contained in:
parent
aa281b06ed
commit
b03bbe55a7
1 changed files with 8 additions and 10 deletions
|
@ -94,8 +94,6 @@ module.exports = function inflate_fast(strm, start) {
|
|||
lmask = (1 << state.lenbits) - 1;
|
||||
dmask = (1 << state.distbits) - 1;
|
||||
|
||||
//goto flags
|
||||
var _dolen, _dodist;
|
||||
|
||||
/* decode literals and length/distances until end-of-block or not enough
|
||||
input data or output space */
|
||||
|
@ -112,8 +110,7 @@ module.exports = function inflate_fast(strm, start) {
|
|||
lcode.fill(hold & lmask, here);
|
||||
|
||||
dolen:
|
||||
do { // Goto emulation
|
||||
_dolen = false;
|
||||
for (;;) { // Goto emulation
|
||||
op = here.bits;
|
||||
hold >>>= op;
|
||||
bits -= op;
|
||||
|
@ -146,8 +143,7 @@ module.exports = function inflate_fast(strm, start) {
|
|||
dcode.fill(hold & dmask, here);
|
||||
|
||||
dodist:
|
||||
do { // goto emulation
|
||||
_dodist = false;
|
||||
for (;;) { // goto emulation
|
||||
op = here.bits;
|
||||
hold >>>= op;
|
||||
bits -= op;
|
||||
|
@ -279,7 +275,6 @@ module.exports = function inflate_fast(strm, start) {
|
|||
}
|
||||
else if ((op & 64) === 0) { /* 2nd level distance code */
|
||||
dcode.fill(here.val + (hold & ((1 << op) - 1)), here);
|
||||
_dodist = true;
|
||||
continue dodist;
|
||||
}
|
||||
else {
|
||||
|
@ -287,11 +282,12 @@ module.exports = function inflate_fast(strm, start) {
|
|||
state.mode = BAD;
|
||||
break top;
|
||||
}
|
||||
} while (_dodist);
|
||||
|
||||
break; // need to emulate goto via "continue"
|
||||
}
|
||||
}
|
||||
else if ((op & 64) === 0) { /* 2nd level length code */
|
||||
lcode.fill(here.val + (hold & ((1 << op) - 1)), here);
|
||||
_dolen = true;
|
||||
continue dolen;
|
||||
}
|
||||
else if (op & 32) { /* end-of-block */
|
||||
|
@ -304,7 +300,9 @@ module.exports = function inflate_fast(strm, start) {
|
|||
state.mode = BAD;
|
||||
break top;
|
||||
}
|
||||
} while (_dolen);
|
||||
|
||||
break; // need to emulate goto via "continue"
|
||||
}
|
||||
} while (_in < last && _out < end);
|
||||
|
||||
/* return unused bytes (on entry, bits < 8, so in won't go too far back) */
|
||||
|
|
Loading…
Add table
Reference in a new issue