summaryrefslogtreecommitdiff
path: root/src/qcommon
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2014-05-25 15:59:09 -0500
committerTim Angus <tim@ngus.net>2014-06-17 17:43:42 +0100
commit8a5f17823ed88b179492eb6e7f9cade526034652 (patch)
treeadfc2148600f775a43216716515ca4de31143d47 /src/qcommon
parentf38f1ac0608d0408c399212f33c1547dae1eea37 (diff)
Fix potential out of bounds access caused by CM_GridPlane
Coverity doesn't care if there is a warning, out of bounds access is bad.
Diffstat (limited to 'src/qcommon')
-rw-r--r--src/qcommon/cm_patch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/cm_patch.c b/src/qcommon/cm_patch.c
index 1234512b..d4c28eef 100644
--- a/src/qcommon/cm_patch.c
+++ b/src/qcommon/cm_patch.c
@@ -608,7 +608,7 @@ static int CM_GridPlane( int gridPlanes[MAX_GRID_SIZE][MAX_GRID_SIZE][2], int i,
}
// should never happen
- Com_Printf( "WARNING: CM_GridPlane unresolvable\n" );
+ Com_Error( ERR_DROP, "CM_GridPlane unresolvable" );
return -1;
}