fixed *top++ bug present in type1/t1gload.c as well

This commit is contained in:
Pavel Kaňkovský 2000-06-23 04:19:36 +00:00
parent 7802d4664d
commit 5b58f5e374
1 changed files with 4 additions and 1 deletions

View File

@ -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" ));