提交 750a2294 编写于 作者: B Behdad Esfahbod

get_table() is allowed to return NULL. Use that to simplify code

上级 99d9ef78
......@@ -364,7 +364,7 @@ hb_face_get_table (hb_face_t *face,
blob = face->get_table (tag, face->user_data);
return blob? blob : &_hb_blob_nil;
return likely (blob) ? blob : &_hb_blob_nil;
}
......
......@@ -153,11 +153,11 @@ _get_table (hb_tag_t tag, void *user_data)
FT_Error error;
if (unlikely (tag == HB_TAG_NONE))
return hb_blob_create_empty ();
return NULL;
error = FT_Load_Sfnt_Table (ft_face, tag, 0, NULL, &length);
if (error)
return hb_blob_create_empty ();
return NULL;
/* TODO Use FT_Memory? */
buffer = (FT_Byte *) malloc (length);
......@@ -166,7 +166,7 @@ _get_table (hb_tag_t tag, void *user_data)
error = FT_Load_Sfnt_Table (ft_face, tag, 0, buffer, &length);
if (error)
return hb_blob_create_empty ();
return NULL;
return hb_blob_create ((const char *) buffer, length,
HB_MEMORY_MODE_WRITABLE,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册