Author: tfaber Date: Thu Oct 22 13:48:12 2015 New Revision: 69643
URL: http://svn.reactos.org/svn/reactos?rev=69643&view=rev Log: [WIN32K:NTGDI] - Fix pool leak in failure case of PATH_StrokePath. CID 716633
Modified: trunk/reactos/win32ss/gdi/ntgdi/path.c
Modified: trunk/reactos/win32ss/gdi/ntgdi/path.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/path.c?re... ============================================================================== --- trunk/reactos/win32ss/gdi/ntgdi/path.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/gdi/ntgdi/path.c [iso-8859-1] Thu Oct 22 13:48:12 2015 @@ -1644,6 +1644,7 @@ if (!Realloc) { DPRINT1("Can't allocate pool!\n"); + ExFreePoolWithTag(pBzrPts, TAG_BEZIER); goto end; }