This commit is contained in:
Ebrahim Byagowi 2019-09-18 22:12:25 +04:30
parent bb41b74fd1
commit e6909ee58d
2 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ hb_buffer_t::clear_positions ()
out_len = 0;
out_info = info;
if (len)
if (likely (len))
memset (pos, 0, sizeof (pos[0]) * len);
}

View File

@ -381,7 +381,7 @@ hb_language_from_string (const char *str, int len)
const char *
hb_language_to_string (hb_language_t language)
{
if (!language) return nullptr;
if (unlikely (!language)) return nullptr;
return language->s;
}