Skip to content

Commit

Permalink
[misc] parsing correction after #9a972b12
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Sep 8, 2022
1 parent f5fc563 commit e60dd93
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ public void skipLengthEncoded() {
} else {
switch (len) {
case 252:
pos += readUnsignedShort();
skip(readUnsignedShort());
break;
case 253:
pos += readUnsignedMedium();
skip(readUnsignedMedium());
break;
case 254:
pos += 4 + readUnsignedInt();
skip((int) (4 + readUnsignedInt()));
break;
}
}
Expand Down

0 comments on commit e60dd93

Please sign in to comment.