mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -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 {
|
||||
|
||||
private final short binaryShiftStart;
|
||||
private final short binaryShiftByteCount;
|
||||
private final int binaryShiftStart;
|
||||
private final int binaryShiftByteCount;
|
||||
|
||||
BinaryShiftToken(Token previous,
|
||||
int binaryShiftStart,
|
||||
int binaryShiftByteCount) {
|
||||
super(previous);
|
||||
this.binaryShiftStart = (short) binaryShiftStart;
|
||||
this.binaryShiftByteCount = (short) binaryShiftByteCount;
|
||||
this.binaryShiftStart = binaryShiftStart;
|
||||
this.binaryShiftByteCount = binaryShiftByteCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue