From 74ff891914c7f91b0f6c86a7a075a4fafdaf15e5 Mon Sep 17 00:00:00 2001 From: "M. Kristall" Date: Sat, 3 Oct 2009 11:41:43 +0000 Subject: * Fix a couple more places where files might not be closed (bug 3554) * Fix off-by-one errors and some gcc warnings --- src/game/bg_misc.c | 16 ++++++++++------ src/game/g_admin.c | 10 +++++----- src/game/g_client.c | 2 +- 3 files changed, 16 insertions(+), 12 deletions(-) (limited to 'src/game') diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 8f03f098..6c63d648 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -1455,12 +1455,14 @@ static qboolean BG_ParseBuildableFile( const char *filename, buildableAttributeO // load the file len = trap_FS_FOpenFile( filename, &f, FS_READ ); - if( len <= 0 ) + if( len < 0 ) return qfalse; - if( len >= sizeof( text ) - 1 ) + if( len == 0 || len >= sizeof( text ) - 1 ) { - Com_Printf( S_COLOR_RED "ERROR: Buildable file %s too long\n", filename ); + trap_FS_FCloseFile( f ); + Com_Printf( S_COLOR_RED "ERROR: Buildable file %s is %s\n", filename, + len == 0 ? "empty" : "too long" ); return qfalse; } @@ -2991,12 +2993,14 @@ static qboolean BG_ParseClassFile( const char *filename, classAttributeOverrides // load the file len = trap_FS_FOpenFile( filename, &f, FS_READ ); - if( len <= 0 ) + if( len < 0 ) return qfalse; - if( len >= sizeof( text ) - 1 ) + if( len == 0 || len >= sizeof( text ) - 1 ) { - Com_Printf( S_COLOR_RED "ERROR: Class file %s too long\n", filename ); + trap_FS_FCloseFile( f ); + Com_Printf( S_COLOR_RED "ERROR: Class file %s is %s\n", filename, + len == 0 ? "empty" : "too long" ); return qfalse; } diff --git a/src/game/g_admin.c b/src/game/g_admin.c index deaedf35..bf0bba33 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -752,7 +752,7 @@ static int admin_listadmins( gentity_t *ent, int start, char *search ) if( !strstr( name, search ) ) continue; - for( j = 0; j <= 8; j++ ) + for( j = 0; j < 8; j++ ) guid_stub[ j ] = vic->client->pers.guid[ j + 24 ]; guid_stub[ j ] = '\0'; @@ -808,7 +808,7 @@ static int admin_listadmins( gentity_t *ent, int start, char *search ) if( dup ) continue; } - for( j = 0; j <= 8; j++ ) + for( j = 0; j < 8; j++ ) guid_stub[ j ] = g_admin_admins[ i ]->guid[ j + 24 ]; guid_stub[ j ] = '\0'; @@ -1765,7 +1765,7 @@ qboolean G_admin_ban( gentity_t *ent, int skiparg ) ADMBP( "^3!ban: ^7multiple recent clients match name, use IP or slot#:\n" ); for( i = 0; i < MAX_ADMIN_NAMELOGS && g_admin_namelog[ i ]; i++ ) { - for( j = 0; j <= 8; j++ ) + for( j = 0; j < 8; j++ ) guid_stub[ j ] = g_admin_namelog[ i ]->guid[ j + 24 ]; guid_stub[ j ] = '\0'; for( j = 0; j < MAX_ADMIN_NAMELOG_NAMES && @@ -2253,7 +2253,7 @@ qboolean G_admin_listplayers( gentity_t *ent, int skiparg ) continue; } - for( j = 0; j <= 8; j++ ) + for( j = 0; j < 8; j++ ) guid_stub[ j ] = p->pers.guid[ j + 24 ]; guid_stub[ j ] = '\0'; @@ -2829,7 +2829,7 @@ qboolean G_admin_namelog( gentity_t *ent, int skiparg ) continue; } printed++; - for( j = 0; j <= 8; j++ ) + for( j = 0; j < 8; j++ ) guid_stub[ j ] = g_admin_namelog[ i ]->guid[ j + 24 ]; guid_stub[ j ] = '\0'; if( g_admin_namelog[ i ]->slot > -1 ) diff --git a/src/game/g_client.c b/src/game/g_client.c index aa91cd46..eec9d3eb 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -766,7 +766,7 @@ void respawn( gentity_t *ent ) /* =========== -ClientCheckName +ClientCleanName ============ */ static void ClientCleanName( const char *in, char *out, int outSize ) -- cgit