mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 17:21:23 +00:00
fixed memory leak in REGION_XorRegion()
svn path=/trunk/; revision=6117
This commit is contained in:
parent
0b9c284361
commit
3ec27cec15
1 changed files with 31 additions and 27 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* 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
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <ddk/ntddk.h>
|
#include <ddk/ntddk.h>
|
||||||
|
@ -1332,9 +1332,13 @@ static void FASTCALL REGION_XorRegion(ROSRGNDATA *dr, ROSRGNDATA *sra,
|
||||||
HRGN htra, htrb;
|
HRGN htra, htrb;
|
||||||
ROSRGNDATA *tra, *trb;
|
ROSRGNDATA *tra, *trb;
|
||||||
|
|
||||||
if ((! (htra = RGNDATA_AllocRgn(sra->rdh.nCount + 1))) ||
|
if(!(htra = RGNDATA_AllocRgn(sra->rdh.nCount + 1)))
|
||||||
(! (htrb = RGNDATA_AllocRgn(srb->rdh.nCount + 1))))
|
|
||||||
return;
|
return;
|
||||||
|
if(!(htrb = RGNDATA_AllocRgn(srb->rdh.nCount + 1)))
|
||||||
|
{
|
||||||
|
NtGdiDeleteObject( htra );
|
||||||
|
return;
|
||||||
|
}
|
||||||
tra = RGNDATA_LockRgn( htra );
|
tra = RGNDATA_LockRgn( htra );
|
||||||
if(!tra ){
|
if(!tra ){
|
||||||
NtGdiDeleteObject( htra );
|
NtGdiDeleteObject( htra );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue