forked from minhngoc25a/freetype2
[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:
parent
04e00b8a3d
commit
32efd8c008
11
ChangeLog
11
ChangeLog
|
@ -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.
|
||||
|
|
|
@ -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 )
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue