mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Add strict equalities in src/core/arithmetic_decoder.js
This commit is contained in:
parent
9cb09324d2
commit
2162a19ed9
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ var ArithmeticDecoder = (function ArithmeticDecoderClosure() {
|
|||
byteIn: function ArithmeticDecoder_byteIn() {
|
||||
var data = this.data;
|
||||
var bp = this.bp;
|
||||
if (data[bp] == 0xFF) {
|
||||
if (data[bp] === 0xFF) {
|
||||
var b1 = data[bp + 1];
|
||||
if (b1 > 0x8F) {
|
||||
this.clow += 0xFF00;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue