[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:
parent
29e044a4af
commit
0eb657b0aa
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue