Fix for uninitialised CB stuff.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1565 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-11-14 00:58:29 +00:00
parent 07593bca79
commit 3818c9342b
1 changed files with 2 additions and 1 deletions

View File

@ -1111,5 +1111,6 @@ void Cvar_Shutdown(void)
Z_Free(grp);
}
CB_Free(cc_cache.cb);
if (cc_cache.cb)
CB_Free(cc_cache.cb);
}