Remove a useless if in cliprgn.c
Patch by Thomas Faber <thfabba at gmx dot de>
See issue #6015 for more details.

svn path=/trunk/; revision=51129
This commit is contained in:
Rafal Harabien 2011-03-23 17:11:40 +00:00
parent cd1a61c18f
commit 4732a3af3d

View file

@ -26,20 +26,13 @@ int FASTCALL
CLIPPING_UpdateGCRegion(DC* Dc)
{
PROSRGNDATA CombinedRegion;
HRGN hRgnVis = Dc->prgnVis->BaseObject.hHmgr;
HRGN hRgnVis;
// would prefer this, but the rest of the code sucks
// ASSERT(Dc->rosdc.hGCClipRgn);
// ASSERT(Dc->rosdc.hClipRgn);
if (!Dc->prgnVis)
{
DPRINT1("Warning, prgnVis is NULL!\n");
}
else
{
hRgnVis = Dc->prgnVis->BaseObject.hHmgr ;
}
ASSERT(Dc->prgnVis);
hRgnVis = Dc->prgnVis->BaseObject.hHmgr;
if (Dc->rosdc.hGCClipRgn == NULL)
Dc->rosdc.hGCClipRgn = IntSysCreateRectRgn(0, 0, 0, 0);