Skip to content

Commit

Permalink
fix(rect): modify to use saturating ops to prevent arith overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeillWang committed Sep 20, 2023
1 parent c9b8e7c commit 8af31e3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/layout.rs
Expand Up @@ -206,7 +206,7 @@ impl Rect {
}

pub const fn area(self) -> u16 {
self.width * self.height
self.width.saturating_mul(self.height)
}

pub const fn left(self) -> u16 {
Expand All @@ -226,14 +226,17 @@ impl Rect {
}

pub fn inner(self, margin: &Margin) -> Rect {
if self.width < 2 * margin.horizontal || self.height < 2 * margin.vertical {
let doubled_margin_horizontal = margin.horizontal.saturating_mul(2);
let doubled_margin_vertical = margin.vertical.saturating_mul(2);

if self.width < doubled_margin_horizontal || self.height < doubled_margin_vertical {
Rect::default()
} else {
Rect {
x: self.x + margin.horizontal,
y: self.y + margin.vertical,
width: self.width - 2 * margin.horizontal,
height: self.height - 2 * margin.vertical,
x: self.x.saturating_add(margin.horizontal),
y: self.y.saturating_add(margin.vertical),
width: self.width.saturating_sub(doubled_margin_horizontal),
height: self.height.saturating_sub(doubled_margin_vertical),
}
}
}
Expand Down

0 comments on commit 8af31e3

Please sign in to comment.