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

Fixes missing compressed object detection

This commit is contained in:
Yury Delendik 2013-06-21 18:02:58 -05:00
parent ce218d021f
commit 7bef903411
3 changed files with 10 additions and 1 deletions

View file

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