mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fix uninitialized variable warning
svn path=/trunk/; revision=20030
This commit is contained in:
parent
7df88f7230
commit
af69de1b67
1 changed files with 1 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ PATH_PathToRegion ( GdiPath *pPath, INT nPolyFillMode, HRGN *pHrgn )
|
|||
{
|
||||
int numStrokes, iStroke, i;
|
||||
INT *pNumPointsInStroke;
|
||||
HRGN hrgn;
|
||||
HRGN hrgn = 0;
|
||||
|
||||
assert ( pPath!=NULL );
|
||||
assert ( pHrgn!=NULL );
|
||||
|
|
Loading…
Reference in a new issue