Removes error catch from fetchUncompressed()
This commit is contained in:
parent
fbdab2c7c5
commit
623fa29300
@ -1216,15 +1216,7 @@ var XRef = (function XRefClosure() {
|
|||||||
error('bad XRef entry');
|
error('bad XRef entry');
|
||||||
}
|
}
|
||||||
if (this.encrypt && !suppressEncryption) {
|
if (this.encrypt && !suppressEncryption) {
|
||||||
try {
|
xrefEntry = parser.getObj(this.encrypt.createCipherTransform(num, gen));
|
||||||
xrefEntry = parser.getObj(this.encrypt.createCipherTransform(num,
|
|
||||||
gen));
|
|
||||||
} catch (ex) {
|
|
||||||
// Almost all streams must be encrypted, but sometimes
|
|
||||||
// they are not, probably due to some broken generators.
|
|
||||||
// Retrying without encryption...
|
|
||||||
return this.fetch(ref, true);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
xrefEntry = parser.getObj();
|
xrefEntry = parser.getObj();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user