* 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:
parent
b185817285
commit
33a48a0336
9 changed files with 26 additions and 19 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue