don't die when translating fonts without a charset

This commit is contained in:
Andreas Gal 2011-06-21 03:42:01 -04:00
parent 2069f3f241
commit 4b118d361c

6
pdf.js
View File

@ -2267,10 +2267,10 @@ var CanvasGraphics = (function() {
// Get the font charset if any
var charset = descriptor.get("CharSet");
if (charset)
if (charset) {
assertWellFormed(IsString(charset), "invalid charset");
charset = charset.split("/");
charset = charset.split("/");
}
} else if (IsName(encoding)) {
var encoding = Encodings[encoding.name];
if (!encoding)