[sfnt] Remove redundant code.

* src/sfnt/sfobjs.c (sfnt_init_face): Remove second test for
`num_instances', which will always succeed.
Harmony
Werner Lemberg 8 years ago
parent 0c7fb43d05
commit c1b000da00
  1. 7
      ChangeLog
  2. 9
      src/sfnt/sfobjs.c

@ -1,3 +1,10 @@
2017-03-05 Werner Lemberg <wl@gnu.org>
[sfnt] Remove redundant code.
* src/sfnt/sfobjs.c (sfnt_init_face): Remove second test for
`num_instances', which will always succeed.
2017-03-04 Werner Lemberg <wl@gnu.org>
[sfnt] Add `get_name_id' service.

@ -999,15 +999,6 @@
if ( !face->goto_table( face, TTAG_CFF, stream, 0 ) )
num_instances = 0;
/* we support at most 2^15 - 1 instances */
if ( num_instances >= ( 1U << 15 ) - 1 )
{
if ( face_instance_index >= 0 )
return FT_THROW( Invalid_Argument );
else
num_instances = 0;
}
/* instance indices in `face_instance_index' start with index 1, */
/* thus `>' and not `>=' */
if ( instance_index > num_instances )

Loading…
Cancel
Save