mirror of https://github.com/freetype/freetype
* src/psaux/t1decode.c (t1_decoder_parse_charstrings)
<op_callothersubr>: Better handling of subroutine index 0. From Matthias Drochner <M.Drochner@fz-juelich.de>.
This commit is contained in:
parent
403559b84a
commit
60f8371353
|
@ -1,3 +1,9 @@
|
|||
2011-07-14 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/psaux/t1decode.c (t1_decoder_parse_charstrings)
|
||||
<op_callothersubr>: Better handling of subroutine index 0.
|
||||
From Matthias Drochner <M.Drochner@fz-juelich.de>.
|
||||
|
||||
2011-07-10 Алексей Подтележников <apodtele@gmail.com>
|
||||
|
||||
[psaux] Optimize previous commit.
|
||||
|
|
|
@ -1009,7 +1009,7 @@
|
|||
break;
|
||||
|
||||
default:
|
||||
if ( arg_cnt >= 0 && subr_no > 0 )
|
||||
if ( arg_cnt >= 0 && subr_no >= 0 )
|
||||
{
|
||||
FT_ERROR(( "t1_decoder_parse_charstrings:"
|
||||
" unknown othersubr [%d %d], wish me luck\n",
|
||||
|
|
Loading…
Reference in New Issue