From b49714565ce45aaabb56dafb66e8ccc89a27f748 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 29 Dec 2004 03:22:09 +0000 Subject: [PATCH] Added some extra validation. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@697 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_model.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/engine/gl/gl_model.c b/engine/gl/gl_model.c index f4c810c78..28152773a 100644 --- a/engine/gl/gl_model.c +++ b/engine/gl/gl_model.c @@ -1685,15 +1685,13 @@ void GLMod_LoadTexinfo (lump_t *l) miptex = LittleLong (in->miptex); out->flags = LittleLong (in->flags); - if (!loadmodel->textures) + if (!loadmodel->textures || miptex < 0 || miptex >= loadmodel->numtextures) { out->texture = r_notexture_mip; // checkerboard texture out->flags = 0; } else { - if (miptex >= loadmodel->numtextures) - Sys_Error ("miptex >= loadmodel->numtextures"); out->texture = loadmodel->textures[miptex]; if (!out->texture) { @@ -1772,6 +1770,7 @@ void GLMod_LoadFaces (lump_t *l) msurface_t *out; int i, count, surfnum; int planenum, side; + int tn; in = (void *)(mod_base + l->fileofs); if (l->filelen % sizeof(*in)) @@ -1794,7 +1793,10 @@ void GLMod_LoadFaces (lump_t *l) out->plane = loadmodel->planes + planenum; - out->texinfo = loadmodel->texinfo + LittleShort (in->texinfo); + tn = LittleShort (in->texinfo); + if (tn < 0 || tn >= loadmodel->numtexinfo) + Host_EndGame("Hey! That map has texinfos out of bounds!\n"); + out->texinfo = loadmodel->texinfo + tn; CalcSurfaceExtents (out);