[cff] Allow hlineto' and
vlineto' without arguments.
We simply ignore such instructions. This is invalid, but it doesn't harm; and indeed, there exist such subsetted fonts in PDFs. Reported by Albert Astals Cid <aacid@kde.org>. * src/cff/cffgload.c (cff_decoder_parse_charstrings) [cff_op_hlineto]: Ignore instruction if there aren't any arguments on the stack.
This commit is contained in:
parent
9ec31cea16
commit
396b11b840
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
2010-12-09 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[cff] Allow `hlineto' and `vlineto' without arguments.
|
||||
|
||||
We simply ignore such instructions. This is invalid, but it doesn't
|
||||
harm; and indeed, there exist such subsetted fonts in PDFs.
|
||||
|
||||
Reported by Albert Astals Cid <aacid@kde.org>.
|
||||
|
||||
* src/cff/cffgload.c (cff_decoder_parse_charstrings)
|
||||
[cff_op_hlineto]: Ignore instruction if there aren't any arguments
|
||||
on the stack.
|
||||
|
||||
2010-11-28 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* Version 2.4.4 released.
|
||||
|
@ -1438,9 +1438,14 @@
|
||||
FT_TRACE4(( op == cff_op_hlineto ? " hlineto\n"
|
||||
: " vlineto\n" ));
|
||||
|
||||
if ( num_args < 1 )
|
||||
if ( num_args < 0 )
|
||||
goto Stack_Underflow;
|
||||
|
||||
/* there exist subsetted fonts (found in PDFs) */
|
||||
/* which call `hlineto' without arguments */
|
||||
if ( num_args == 0 )
|
||||
break;
|
||||
|
||||
if ( cff_builder_start_point ( builder, x, y ) ||
|
||||
check_points( builder, num_args ) )
|
||||
goto Fail;
|
||||
|
Loading…
Reference in New Issue
Block a user