* src/base/ftobjs.c (open_face_from_buffer): Silence maybe-uninitialized.

We never call this function without a `driver_name` (#1245).
This commit is contained in:
Alexei Podtelezhnikov 2023-08-01 22:48:31 -04:00
parent b2584c738f
commit 95a872085e

View File

@ -1747,7 +1747,8 @@
FT_Memory memory = library->memory;
args.flags = 0;
args.driver = NULL;
args.flags = 0;
if ( driver_name )
{