mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Possible fix for https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=37811
This commit is contained in:
parent
d2027d0e0f
commit
2b48aec2c4
|
@ -20,15 +20,15 @@ import com.google.zxing.common.BitArray;
|
||||||
|
|
||||||
final class BinaryShiftToken extends Token {
|
final class BinaryShiftToken extends Token {
|
||||||
|
|
||||||
private final short binaryShiftStart;
|
private final int binaryShiftStart;
|
||||||
private final short binaryShiftByteCount;
|
private final int binaryShiftByteCount;
|
||||||
|
|
||||||
BinaryShiftToken(Token previous,
|
BinaryShiftToken(Token previous,
|
||||||
int binaryShiftStart,
|
int binaryShiftStart,
|
||||||
int binaryShiftByteCount) {
|
int binaryShiftByteCount) {
|
||||||
super(previous);
|
super(previous);
|
||||||
this.binaryShiftStart = (short) binaryShiftStart;
|
this.binaryShiftStart = binaryShiftStart;
|
||||||
this.binaryShiftByteCount = (short) binaryShiftByteCount;
|
this.binaryShiftByteCount = binaryShiftByteCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue