1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #3375 from yurydelendik/bug867484

Fixes missing compressed object detection
This commit is contained in:
Brendan Dahl 2013-06-27 13:36:53 -07:00
commit a0528a5ea8
3 changed files with 10 additions and 1 deletions

View file

@ -991,7 +991,7 @@ var XRef = (function XRefClosure() {
}
}
e = entries[e.gen];
if (!e) {
if (e === undefined) {
error('bad XRef entry for compressed object');
}
return e;