From 4d301ecaa49345f1b2e524dd96f3730577ca378e Mon Sep 17 00:00:00 2001 From: tma Date: Fri, 27 Jan 2006 18:14:01 +0000 Subject: * Fix to a memory leak in CM_ValidateFacet git-svn-id: svn://svn.icculus.org/quake3/trunk@529 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/cm_patch.c | 1 + 1 file changed, 1 insertion(+) (limited to 'code/qcommon/cm_patch.c') diff --git a/code/qcommon/cm_patch.c b/code/qcommon/cm_patch.c index 6fe9a75..c29a329 100644 --- a/code/qcommon/cm_patch.c +++ b/code/qcommon/cm_patch.c @@ -767,6 +767,7 @@ static qboolean CM_ValidateFacet( facet_t *facet ) { w = BaseWindingForPlane( plane, plane[3] ); for ( j = 0 ; j < facet->numBorders && w ; j++ ) { if ( facet->borderPlanes[j] == -1 ) { + FreeWinding( w ); return qfalse; } Vector4Copy( planes[ facet->borderPlanes[j] ].plane, plane ); -- cgit v1.2.3