From 1ea74c62693dd4be58cd5eae58e8243b27b845c9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 4 Jan 2016 22:04:39 +0900 Subject: [PATCH] Fix the gl skin segfault. This was caused by an out-by one error when setting up the skin: if cmap was 0 then the gl_skin struct would be taken from index -1 of the array and thus cause all sorts of grief. --- libs/models/gl_skin.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libs/models/gl_skin.c b/libs/models/gl_skin.c index 16881d326..442def004 100644 --- a/libs/models/gl_skin.c +++ b/libs/models/gl_skin.c @@ -231,19 +231,20 @@ gl_Skin_SetupSkin (skin_t *skin, int cmap) int changed; glskin_t *s; + skin->texnum = 0; + skin->auxtex = 0; + if (!cmap) { + return; + } // simplify cmap usage (texture offset/array index) cmap--; s = skins + cmap; changed = (s->tex != skin->texels); s->tex = skin->texels; if (!changed) { - skin->texnum = 0; - skin->auxtex = 0; - if (cmap >= 0) { - skin->texnum = skin_textures + cmap; - if (s->fb) - skin->auxtex = skin_fb_textures + cmap; - } + skin->texnum = skin_textures + cmap; + if (s->fb) + skin->auxtex = skin_fb_textures + cmap; return; } if (s->tex)