In function TT_Load_Metrics, fix improper an improper pointer dereference.

Submitted by herbert duerr <duerr@sun.com>
This commit is contained in:
Tom Kacvinsky 2001-04-02 17:47:16 +00:00
parent e2abb1aa39
commit 574ed1bc97
1 changed files with 1 additions and 1 deletions

View File

@ -751,7 +751,7 @@
/* fonts usually only, nothing serious will happen */
if ( num_shorts > num_shorts_checked && num_shorts_checked > 0 )
{
FT_Short val = *(shorts)[num_shorts_checked - 1];
FT_Short val = (*shorts)[num_shorts_checked - 1];
limit = *shorts + num_shorts;