[unsafe-to-concat] Adjust end conditions
This commit is contained in:
parent
8663eda4fd
commit
14d43d1235
|
@ -392,8 +392,7 @@ struct hb_buffer_t
|
||||||
bool interior = false,
|
bool interior = false,
|
||||||
bool from_out_buffer = false)
|
bool from_out_buffer = false)
|
||||||
{
|
{
|
||||||
if (end == (unsigned) -1)
|
end = hb_min (end, len);
|
||||||
end = len;
|
|
||||||
|
|
||||||
if (interior && !from_out_buffer && end - start < 2)
|
if (interior && !from_out_buffer && end - start < 2)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue