ref: 32efd8c00844646eacf07d1e1b032054a913c279
parent: 04e00b8a3dc3b645396b410602c18d09a996e8c2
author: Werner Lemberg <[email protected]>
date: Fri Apr 7 13:22:59 EDT 2017
[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.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2017-04-07 Werner Lemberg <[email protected]>
+ [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 <[email protected]>
+
[ftfuzzer] Fix clang warnings.
* src/tools/ftfuzzer/ftfuzzer.cc (LLVMFuzzerTestOneInput): Add
--- a/src/autofit/afranges.c
+++ b/src/autofit/afranges.c
@@ -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 )
};