Merge "Region cannot handle malformed Rects. Abort the Region op in that case."

This commit is contained in:
Mathias Agopian 2011-09-26 16:10:08 -07:00 committed by Android (Google) Code Review
commit e488c209c4

View File

@ -482,6 +482,7 @@ void Region::boolean_operation(int op, Region& dst,
if (!rhs.isValid()) {
LOGE("Region::boolean_operation(op=%d) invalid Rect={%d,%d,%d,%d}",
op, rhs.left, rhs.top, rhs.right, rhs.bottom);
return;
}
#if VALIDATE_WITH_CORECG || VALIDATE_REGIONS