You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x0i can be -1 in this case, and casting it to usize will give usize max. The addition with linestart will cause an arithmetic overflow. Wrapping add should be used.
The text was updated successfully, but these errors were encountered:
font-rs/src/raster.rs
Line 82 in ad0b79e
x0i
can be-1
in this case, and casting it tousize
will giveusize
max. The addition withlinestart
will cause an arithmetic overflow. Wrapping add should be used.The text was updated successfully, but these errors were encountered: