mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 21:22:47 +00:00
Bug 1014654. Handle empty regions in SimplifyOutwardByArea().
This commit is contained in:
parent
e2b5275fc3
commit
0014fc1ded
@ -313,6 +313,11 @@ void nsRegion::SimplifyOutwardByArea(uint32_t aThreshold)
|
||||
pixman_box32_t *boxes;
|
||||
int n;
|
||||
boxes = pixman_region32_rectangles(&mImpl, &n);
|
||||
|
||||
// if we have no rectangles then we're done
|
||||
if (!n)
|
||||
return;
|
||||
|
||||
pixman_box32_t *end = boxes + n;
|
||||
pixman_box32_t *topRectsEnd = boxes+1;
|
||||
pixman_box32_t *topRects = boxes;
|
||||
|
@ -276,5 +276,10 @@ TEST(Gfx, RegionSimplify) {
|
||||
"regions not merged";
|
||||
}
|
||||
|
||||
{ // empty region
|
||||
// just make sure this doesn't crash.
|
||||
nsRegion r;
|
||||
r.SimplifyOutwardByArea(100);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user