mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-24 17:18:07 +02:00
fix other cases of reading this.buffer before ensureBuffer, too
This commit is contained in:
parent
3f713de5fe
commit
d1809be1ec
1 changed files with 4 additions and 9 deletions
13
pdf.js
13
pdf.js
|
@ -603,10 +603,8 @@ var PredictorStream = (function() {
|
|||
var rowBytes = this.rowBytes;
|
||||
var pixBytes = this.pixBytes;
|
||||
|
||||
|
||||
var buffer = this.buffer;
|
||||
var bufferLength = this.bufferLength;
|
||||
this.ensureBuffer(bufferLength + rowBytes);
|
||||
var buffer this.ensureBuffer(bufferLength + rowBytes);
|
||||
var currentRow = buffer.subarray(bufferLength, bufferLength + rowBytes);
|
||||
|
||||
var bits = this.bits;
|
||||
|
@ -672,8 +670,7 @@ var PredictorStream = (function() {
|
|||
var rawBytes = this.stream.getBytes(rowBytes);
|
||||
|
||||
var bufferLength = this.bufferLength;
|
||||
this.ensureBuffer(bufferLength + pixBytes);
|
||||
var buffer = this.buffer;
|
||||
var buffer = this.ensureBuffer(bufferLength + pixBytes);
|
||||
|
||||
var currentRow = buffer.subarray(bufferLength, bufferLength + rowBytes);
|
||||
var prevRow = buffer.subarray(bufferLength - rowBytes, bufferLength);
|
||||
|
@ -802,8 +799,7 @@ var Ascii85Stream = (function() {
|
|||
|
||||
// special code for z
|
||||
if (c == zCode) {
|
||||
this.ensureBuffer(bufferLength + 4);
|
||||
var buffer = this.buffer;
|
||||
var buffer = this.ensureBuffer(bufferLength + 4);
|
||||
for (var i = 0; i < 4; ++i)
|
||||
buffer[bufferLength + i] = 0;
|
||||
this.bufferLength += 4;
|
||||
|
@ -820,8 +816,7 @@ var Ascii85Stream = (function() {
|
|||
if (!c || c == tildaCode)
|
||||
break;
|
||||
}
|
||||
this.ensureBuffer(bufferLength + i - 1);
|
||||
var buffer = this.buffer;
|
||||
var buffer = this.ensureBuffer(bufferLength + i - 1);
|
||||
this.bufferLength += i - 1;
|
||||
|
||||
// partial ending;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue