fixed memory leak in REGION_XorRegion()

svn path=/trunk/; revision=6117
This commit is contained in:
Thomas Bluemel 2003-09-23 19:33:29 +00:00
parent 0b9c284361
commit 3ec27cec15

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: region.c,v 1.36 2003/09/09 09:39:21 gvg Exp $ */
/* $Id: region.c,v 1.37 2003/09/23 19:33:29 weiden Exp $ */
#undef WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <ddk/ntddk.h>
@ -1332,9 +1332,13 @@ static void FASTCALL REGION_XorRegion(ROSRGNDATA *dr, ROSRGNDATA *sra,
HRGN htra, htrb;
ROSRGNDATA *tra, *trb;
if ((! (htra = RGNDATA_AllocRgn(sra->rdh.nCount + 1))) ||
(! (htrb = RGNDATA_AllocRgn(srb->rdh.nCount + 1))))
if(!(htra = RGNDATA_AllocRgn(sra->rdh.nCount + 1)))
return;
if(!(htrb = RGNDATA_AllocRgn(srb->rdh.nCount + 1)))
{
NtGdiDeleteObject( htra );
return;
}
tra = RGNDATA_LockRgn( htra );
if(!tra ){
NtGdiDeleteObject( htra );