1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

fix another binary-mode issue

This commit is contained in:
Chris Jones 2011-07-04 17:39:29 -04:00
parent eb17d81316
commit d4f49c05c5
2 changed files with 2 additions and 1 deletions

1
pdf.js
View file

@ -2971,6 +2971,7 @@ var Catalog = (function() {
var PDFDoc = (function() {
function constructor(stream) {
assertWellFormed(stream.length > 0, "stream must have data");
this.stream = stream;
this.setup();
}