[unsafe-to-concat] Adjust end conditions

This commit is contained in:
Behdad Esfahbod 2022-01-22 10:46:18 -07:00
parent 8663eda4fd
commit 14d43d1235
1 changed files with 1 additions and 2 deletions

View File

@ -392,8 +392,7 @@ struct hb_buffer_t
bool interior = false,
bool from_out_buffer = false)
{
if (end == (unsigned) -1)
end = len;
end = hb_min (end, len);
if (interior && !from_out_buffer && end - start < 2)
return;