mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[WIN32K]
Fix DC reference leak in IntPolygon. svn path=/trunk/; revision=70180
This commit is contained in:
parent
99cbcf396b
commit
7ceb06e329
1 changed files with 14 additions and 7 deletions
|
@ -165,13 +165,20 @@ IntGdiPolyPolygon(DC *dc,
|
|||
BOOL FASTCALL
|
||||
IntPolygon(HDC hdc, POINT *Point, int Count)
|
||||
{
|
||||
PDC dc;
|
||||
if (!(dc = DC_LockDc(hdc)))
|
||||
{
|
||||
EngSetLastError(ERROR_INVALID_HANDLE);
|
||||
return FALSE;
|
||||
}
|
||||
return IntGdiPolygon(dc, Point, Count);
|
||||
BOOL bResult;
|
||||
PDC pdc;
|
||||
|
||||
pdc = DC_LockDc(hdc);
|
||||
if (pdc == NULL)
|
||||
{
|
||||
EngSetLastError(ERROR_INVALID_HANDLE);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bResult = IntGdiPolygon(pdc, Point, Count);
|
||||
|
||||
DC_UnlockDc(pdc);
|
||||
return bResult;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue