Fix signed comparison on 32bit
This commit is contained in:
parent
dfc5780245
commit
2ba984fcbb
|
@ -175,7 +175,7 @@ struct hb_sanitize_context_t :
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this->start = obj_start;
|
this->start = obj_start;
|
||||||
this->end = obj_start + hb_min (this->end - obj_start, obj->get_size ());
|
this->end = obj_start + hb_min (size_t (this->end - obj_start), obj->get_size ());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue