Fix confusion between boolean and FT_Error return. (GSUB equivalent of fix

Sat Jul 26 21:06:26 2003  Owen Taylor  <otaylor@redhat.com>

        * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition):
        Fix confusion between boolean and FT_Error return.
        (GSUB equivalent of fix for #108358)
This commit is contained in:
Owen Taylor 2003-07-27 01:10:15 +00:00 committed by Owen Taylor
parent a7305ab262
commit e10ea2afd9
1 changed files with 3 additions and 2 deletions

View File

@ -2969,12 +2969,13 @@
if ( class_offset )
{
if ( !FILE_Seek( class_offset + base_offset ) )
error = Load_ClassDefinition( cd, limit, stream ) == TT_Err_Ok;
error = Load_ClassDefinition( cd, limit, stream );
}
else
error = Load_EmptyClassDefinition ( cd, stream );
(void)FILE_Seek( cur_offset );
if (error == TT_Err_Ok)
(void)FILE_Seek( cur_offset ); /* Changes error as a side-effect */
return error;
}