Commit 1c44de209cb465d175279dc30cd95f9857f703dd

Alexei Podtelezhnikov 2022-11-20T22:37:08

* src/autofit/afloader.c (af_loader_load_glyph): Remove `size` check. This is done by `FT_Load_Glyph`.

diff --git a/src/autofit/afloader.c b/src/autofit/afloader.c
index 733354d..978499f 100644
--- a/src/autofit/afloader.c
+++ b/src/autofit/afloader.c
@@ -216,7 +216,7 @@
     FT_Error  error;
 
     FT_Size           size          = face->size;
-    FT_Size_Internal  size_internal = NULL;
+    FT_Size_Internal  size_internal = size->internal;
     FT_GlyphSlot      slot          = face->glyph;
     FT_Slot_Internal  slot_internal = slot->internal;
     FT_GlyphLoader    gloader       = slot_internal->loader;
@@ -229,11 +229,6 @@
     AF_WritingSystemClass  writing_system_class;
 
 
-    if ( !size )
-      return FT_THROW( Invalid_Size_Handle );
-
-    size_internal = size->internal;
-
     FT_ZERO( &scaler );
 
     if ( !size_internal->autohint_metrics.x_scale                          ||