mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Merge pull request #13612 from Snuffleupagus/issue-13610
Support corrupt documents with *empty* `Name`-entries (issue 13610)
This commit is contained in:
commit
ad4b2ce021
5 changed files with 18 additions and 1 deletions
|
@ -1113,6 +1113,9 @@ class Lexer {
|
|||
}
|
||||
if (strBuf.length > 127) {
|
||||
warn(`Name token is longer than allowed by the spec: ${strBuf.length}`);
|
||||
} else if (strBuf.length === 0) {
|
||||
warn("Name token is empty.");
|
||||
return Name.empty;
|
||||
}
|
||||
return Name.get(strBuf.join(""));
|
||||
}
|
||||
|
|
|
@ -33,6 +33,12 @@ const Name = (function NameClosure() {
|
|||
return nameValue ? nameValue : (nameCache[name] = new Name(name));
|
||||
}
|
||||
|
||||
static get empty() {
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
const emptyName = new Name({ empty: true });
|
||||
return shadow(this, "empty", emptyName);
|
||||
}
|
||||
|
||||
static _clearCache() {
|
||||
nameCache = Object.create(null);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue