Fixes for subtile bugs that were introduced in 59283bdf6d
and 99440ab691
, among others.
This commit is contained in:
parent
8e50da78ee
commit
438e3c8f6d
6 changed files with 11 additions and 10 deletions
|
@ -4671,7 +4671,7 @@ var CFFParser = (function CFFParserClosure() {
|
|||
|
||||
var data = charstring;
|
||||
var length = data.length;
|
||||
for (var j = 0; j <= length; j) {
|
||||
for (var j = 0; j <= length;) {
|
||||
var value = data[j++];
|
||||
if (value == 12 && data[j++] == 0) {
|
||||
data[j - 2] = 139;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue