fixed *top++ bug present in type1/t1gload.c as well
This commit is contained in:
parent
7802d4664d
commit
5b58f5e374
@ -1035,7 +1035,10 @@
|
||||
{
|
||||
FT_TRACE4(( " div" ));
|
||||
if (top[1])
|
||||
*top++ = top[0] / top[1];
|
||||
{
|
||||
*top = top[0] / top[1];
|
||||
++top;
|
||||
}
|
||||
else
|
||||
{
|
||||
FT_ERROR(( "T1.Parse_CharStrings : division by 0\n" ));
|
||||
|
Loading…
Reference in New Issue
Block a user