[truetype] Decrease the trace level catching the interpreter error.

* src/truetype/ttinterp.c (TT_RunIns): Decrease the trace level
showing the error when the interpreter returns with an error,
from FT_TRACE7() to FT_TRACE1().
This commit is contained in:
suzuki toshiya 2010-08-31 13:29:05 +09:00
parent 29e044a4af
commit 0eb657b0aa
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2010-08-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
[truetype] Decrease the trace level catching the interpreter error.
* src/truetype/ttinterp.c (TT_RunIns): Decrease the trace level
showing the error when the interpreter returns with an error,
from FT_TRACE7() to FT_TRACE1().
2010-08-30 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
[truetype] Prevent bytecode reuse after the interpretation error.

View File

@ -8167,7 +8167,7 @@
/* it should not be used for next interpretation. */
if ( CUR.error )
{
FT_TRACE7(( " The interpreter got an error = %d\n", CUR.error ));
FT_TRACE1(( " The interpreter got an error = %d\n", CUR.error ));
free_buffer_in_size( exc );
exc->size->cvt_ready = FALSE;
exc->size->bytecode_ready = FALSE;