[autofit] Fix invalid character range description (#50745).

Also reported as

  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1034

* src/autofit/afranges.c (af_glag_nonbase_uniranges): Fix typo in
recent commit.
This commit is contained in:
Werner Lemberg 2017-04-07 17:22:59 +02:00
parent 04e00b8a3d
commit 32efd8c008
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2017-04-07 Werner Lemberg <wl@gnu.org>
[autofit] Fix invalid character range description (#50745).
Also reported as
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1034
* src/autofit/afranges.c (af_glag_nonbase_uniranges): Fix typo in
recent commit.
2017-04-07 Werner Lemberg <wl@gnu.org>
[ftfuzzer] Fix clang warnings.

View File

@ -255,7 +255,8 @@
const AF_Script_UniRangeRec af_glag_nonbase_uniranges[] =
{
AF_UNIRANGE_REC( 0x1E000, 0x1E02F )
AF_UNIRANGE_REC( 0x1E000, 0x1E02F ),
AF_UNIRANGE_REC( 0, 0 )
};