mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[Win32k]
- Fix a crash in WidenPath, tested with Area.exe. svn path=/trunk/; revision=50986
This commit is contained in:
parent
a393a04761
commit
d53444e50b
1 changed files with 1 additions and 1 deletions
|
@ -1858,7 +1858,7 @@ PATH_WidenPath(DC *dc)
|
|||
PATH_DestroyGdiPath(pDownPath);
|
||||
ExFreePoolWithTag(pDownPath, TAG_PATH);
|
||||
}
|
||||
ExFreePoolWithTag(pStrokes, TAG_PATH);
|
||||
if (pStrokes) ExFreePoolWithTag(pStrokes, TAG_PATH);
|
||||
|
||||
pNewPath->state = PATH_Closed;
|
||||
if (!(ret = PATH_AssignGdiPath(pPath, pNewPath)))
|
||||
|
|
Loading…
Reference in a new issue