Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: ui/gfx/geometry/rect.h

Issue 2268423003: Adjust gfx::Rect's width and height to avoid integer overflow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also fix width Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/gfx/geometry/rect_unittest.cc » ('j') | ui/gfx/geometry/rect_unittest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/geometry/rect.h
diff --git a/ui/gfx/geometry/rect.h b/ui/gfx/geometry/rect.h
index 2a5fe8e39d2d0714d893e27dd7ee3fc950480e71..47d28dd0f9eeb86d5a16c7a401291465499f2d58 100644
--- a/ui/gfx/geometry/rect.h
+++ b/ui/gfx/geometry/rect.h
@@ -32,15 +32,23 @@ namespace gfx {
class Insets;
+#define GetClampedValue(origin, size) \
danakj 2016/08/25 17:59:21 can this be a constexpr function instead, in an in
sunxd 2016/08/25 19:25:09 Acknowledged.
+ origin > 0 && std::numeric_limits<int>::max() - origin < size \
+ ? std::numeric_limits<int>::max() - origin \
+ : size
+
class GFX_EXPORT Rect {
public:
constexpr Rect() = default;
constexpr Rect(int width, int height) : size_(width, height) {}
constexpr Rect(int x, int y, int width, int height)
- : origin_(x, y), size_(width, height) {}
+ : origin_(x, y),
+ size_(GetClampedValue(x, width), GetClampedValue(y, height)) {}
constexpr explicit Rect(const Size& size) : size_(size) {}
constexpr Rect(const Point& origin, const Size& size)
- : origin_(origin), size_(size) {}
+ : origin_(origin),
+ size_(GetClampedValue(origin.x(), size.width()),
+ GetClampedValue(origin.y(), size.height())) {}
#if defined(OS_WIN)
explicit Rect(const RECT& r);
« no previous file with comments | « no previous file | ui/gfx/geometry/rect_unittest.cc » ('j') | ui/gfx/geometry/rect_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698