* src/cff/cffobjs.c (cff_size_get_globals_funcs): Shorten de-referencing.

This commit is contained in:
Alexei Podtelezhnikov 2023-03-03 18:40:48 +00:00
parent 5ac6276af1
commit 2adef94f43
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@
FT_Module module;
module = FT_Get_Module( size->root.face->driver->root.library,
"pshinter" );
module = FT_Get_Module( font->library, "pshinter" );
return ( module && pshinter && pshinter->get_globals_funcs )
? pshinter->get_globals_funcs( module )
: 0;