Initialize inputBuf.
Fix also another jslint error.
This commit is contained in:
parent
d9e01b1d7a
commit
b8263a5c1f
5
pdf.js
5
pdf.js
@ -1553,7 +1553,7 @@ var CCITTFaxStream = (function() {
|
|||||||
this.row = 0;
|
this.row = 0;
|
||||||
this.nextLine2D = this.encoding < 0;
|
this.nextLine2D = this.encoding < 0;
|
||||||
this.inputBits = 0;
|
this.inputBits = 0;
|
||||||
this.inputBuf;
|
this.inputBuf = EOF;
|
||||||
this.outputBits = 0;
|
this.outputBits = 0;
|
||||||
this.buf = EOF;
|
this.buf = EOF;
|
||||||
|
|
||||||
@ -3676,8 +3676,7 @@ var PDFDoc = (function() {
|
|||||||
if (find(stream, 'startxref', 1024, true)) {
|
if (find(stream, 'startxref', 1024, true)) {
|
||||||
stream.skip(9);
|
stream.skip(9);
|
||||||
var ch;
|
var ch;
|
||||||
while (Lexer.isSpace(ch = stream.getChar()))
|
while (Lexer.isSpace(ch = stream.getChar())){}
|
||||||
;
|
|
||||||
var str = '';
|
var str = '';
|
||||||
while ((ch - '0') <= 9) {
|
while ((ch - '0') <= 9) {
|
||||||
str += ch;
|
str += ch;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user