From f5dd6915ff7192a3b644e15cdff40756c976618b Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 12:52:48 +0000 Subject: Initialisation fix in BP zone allocation code --- src/game/g_main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/game') diff --git a/src/game/g_main.c b/src/game/g_main.c index 7b1ff789..b3f65228 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -2423,10 +2423,9 @@ void CheckCvars( void ) size_t newsize = g_humanRepeaterMaxZones.integer * sizeof( zone_t ); size_t oldsize = lastNumZones * sizeof( zone_t ); newZones = BG_Alloc( newsize ); - Com_Memset( &newZones[ lastNumZones ], 0, newsize - oldsize ); if( level.powerZones ) { - Com_Memcpy( newZones, level.powerZones, oldsize ); + Com_Memcpy( newZones, level.powerZones, MIN( oldsize, newsize ) ); BG_Free( level.powerZones ); } level.powerZones = newZones; -- cgit