Commit f3560ece authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

gdi32: Fix minor read buffer overrun in CombineRgn.

parent 56a57f0c
......@@ -2216,7 +2216,8 @@ static BOOL REGION_SubtractO (WINEREGION *pReg, RECT *r1, RECT *r1End,
if (!add_rect( pReg, left, top, r1->right, bottom )) return FALSE;
}
r1++;
left = r1->left;
if (r1 != r1End)
left = r1->left;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment