From: sbarman Date: Wed, 22 Jun 2011 05:53:47 +0000 (-0700) Subject: moved array allocation to consturctor X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=02dc50532e48e6b30b5644c69db2d8636643b193;p=pdf.js.git moved array allocation to consturctor --- diff --git a/pdf.js b/pdf.js index 766ea3b..852eb03 100644 --- a/pdf.js +++ b/pdf.js @@ -770,6 +770,7 @@ var Ascii85Stream = (function() { function constructor(str) { this.str = str; this.dict = str.dict; + this.input = new Uint8Array(5); DecodeStream.call(this); } @@ -799,7 +800,7 @@ var Ascii85Stream = (function() { buffer[bufferLength + i] = 0; this.bufferLength += 4; } else { - var input = new Uint8Array(5); + var input = this.input; input[0] = c; for (var i = 1; i < 5; ++i){ c = str.getByte();