* Fix to multiple buffer overflow bugs in CL_Rcon_f

* Fix to COM_ParseExt 1 byte overwrite bug
* Fixed some missing calls to trap_FS_FCloseFile
* Fixed q3msgboom and q3infoboom bugs
* Fixed some qboolean type confusion
* Above fixes from http://www.quakesrc.org/forums/viewtopic.php?t=5374
This commit is contained in:
Tim Angus 2005-09-19 17:45:29 +00:00
parent b185817285
commit 33a48a0336
9 changed files with 26 additions and 19 deletions

View file

@ -42,7 +42,7 @@ int chat_playerNum;
qboolean key_overstrikeMode;
qboolean anykeydown;
int anykeydown;
qkey_t keys[MAX_KEYS];
@ -1238,7 +1238,7 @@ void Key_ClearStates (void)
{
int i;
anykeydown = qfalse;
anykeydown = 0;
for ( i=0 ; i < MAX_KEYS ; i++ ) {
if ( keys[i].down ) {