Fix a typo on masking face id

Most of functionality should be moved to FcFreeTypeQueryAll()
for varfonts now though, if doing the same to FcFreeTypeQuery()
returns Null pattern because of inappropriate masking.

This might be not that big deal for varfonts support. but

Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/162

Reported by Kevin Scott
This commit is contained in:
Akira TAGOH 2019-06-18 05:55:21 +00:00
parent a919700fbd
commit c0dc76268b
1 changed files with 1 additions and 1 deletions

View File

@ -2135,7 +2135,7 @@ FcFreeTypeQuery(const FcChar8 *file,
if (FT_Init_FreeType (&ftLibrary))
return NULL;
if (FT_New_Face (ftLibrary, (char *) file, id & 0x7FFFFFFFF, &face))
if (FT_New_Face (ftLibrary, (char *) file, id & 0x7FFFFFFF, &face))
goto bail;
if (count)