Don't allow CFF2 charstrings to specify a width

OpenType-1.8
Dave Arnold 8 years ago
parent e3ef1df506
commit dfce4760af
  1. 4
      src/cff/cf2intrp.c

@ -547,8 +547,10 @@
* If one of the above operators occurs without explicitly specifying
* a width, we assume the default width.
*
* CFF2 charstrings always return the default width (0)
*
*/
haveWidth = FALSE;
haveWidth = font->isCFF2 ? TRUE : FALSE;
*width = cf2_getDefaultWidthX( decoder );
/*

Loading…
Cancel
Save