[truetype] Better protection against malformed `fpgm' (#46223).

* src/truetype/ttobjs.c (tt_size_init_bytecode): Don't execute a
malformed `fpgm' table more than once.
2.6.5
Werner Lemberg 9 years ago
parent 7643b5839b
commit dcfc4d9c21
  1. 7
      ChangeLog
  2. 8
      src/truetype/ttobjs.c

@ -1,3 +1,10 @@
2015-10-18 Werner Lemberg <wl@gnu.org>
[truetype] Better protection against malformed `fpgm' (#46223).
* src/truetype/ttobjs.c (tt_size_init_bytecode): Don't execute a
malformed `fpgm' table more than once.
2015-10-17 Werner Lemberg <wl@gnu.org>
* src/cid/cidgload.c (cid_load_glyph): Fix memory leak.

@ -1078,7 +1078,15 @@
}
/* Fine, now run the font program! */
/* In case of an error while executing `fpgm', we intentionally don't */
/* clean up immediately – bugs in the `fpgm' are so fundamental that */
/* all following hinting calls should fail. Additionally, `fpgm' is */
/* to be executed just once; calling it again is completely useless */
/* and might even lead to extremely slow behaviour if it is malformed */
/* (containing an infinite loop, for example). */
error = tt_size_run_fpgm( size, pedantic );
return error;
Exit:
if ( error )

Loading…
Cancel
Save