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

Merge pull request #3615 from yurydelendik/stopindexing

Stops objects indexing at the end
This commit is contained in:
Brendan Dahl 2013-08-26 10:33:54 -07:00
commit 547a7aa862
5 changed files with 79 additions and 0 deletions

View file

@ -758,6 +758,9 @@ var XRef = (function XRefClosure() {
if (ch === 37) { // %-comment
do {
++position;
if (position >= length) {
break;
}
ch = buffer[position];
} while (ch !== 13 && ch !== 10);
continue;