From 2162a19ed956c0cef6e7dc3bffc5f0cc58be5d11 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 1 Aug 2014 18:23:49 +0200 Subject: [PATCH] Add strict equalities in src/core/arithmetic_decoder.js --- src/core/arithmetic_decoder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/arithmetic_decoder.js b/src/core/arithmetic_decoder.js index 6d21cf63a..29f3a60f2 100644 --- a/src/core/arithmetic_decoder.js +++ b/src/core/arithmetic_decoder.js @@ -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;