[cff] Optimize byte_str_ref_t array access

This commit is contained in:
Behdad Esfahbod 2022-11-21 14:23:07 -07:00
parent a81ec9b2b6
commit d9de515a38
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ struct byte_str_ref_t
set_error ();
return Null (unsigned char);
}
return str[get_offset () + i];
return str.arrayZ[get_offset () + i];
}
/* Conversion to hb_ubytes_t */