[name] Skip enumerating names with unknown language
This commit is contained in:
parent
2c39f359e4
commit
622b014faf
|
@ -206,7 +206,8 @@ struct name
|
|||
unsigned int j = 0;
|
||||
for (unsigned int i = 0; i < this->names.len; i++)
|
||||
{
|
||||
if (this->names[i].entry_score == UNSUPPORTED)
|
||||
if (this->names[i].entry_score == UNSUPPORTED ||
|
||||
this->names[i].language == HB_LANGUAGE_INVALID)
|
||||
continue;
|
||||
if (i &&
|
||||
this->names[i - 1].name_id == this->names[i].name_id &&
|
||||
|
|
Loading…
Reference in New Issue