summaryrefslogtreecommitdiff
path: root/src/game/g_maprotation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_maprotation.c')
-rw-r--r--src/game/g_maprotation.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/g_maprotation.c b/src/game/g_maprotation.c
index b34370b8..968ba487 100644
--- a/src/game/g_maprotation.c
+++ b/src/game/g_maprotation.c
@@ -313,9 +313,11 @@ static qboolean G_ParseMapRotationFile( const char *fileName )
if( len < 0 )
return qfalse;
- if( len >= sizeof( text ) - 1 )
+ if( len == 0 || len >= sizeof( text ) - 1 )
{
- G_Printf( S_COLOR_RED "ERROR: map rotation file %s too long\n", fileName );
+ trap_FS_FCloseFile( f );
+ G_Printf( S_COLOR_RED "ERROR: map rotation file %s is %s\n", fileName,
+ len == 0 ? "empty" : "too long" );
return qfalse;
}