From 890c83ff6e91654f0a6bd467e3617f9b6b3a35bd Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Thu, 16 Oct 2014 13:45:39 -0400 Subject: [PATCH] Fix crash in classic GL GL sometimes crashes when building skins. This probably isn't the correct fix (finding the situation where fb->tex can become NULL despite fb being non-null is), but it does kill the segfault. Luckily, this is git and this commit can just be reverted when the real fix shows up. :) --- libs/models/gl_skin.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/models/gl_skin.c b/libs/models/gl_skin.c index 0647d361e..16881d326 100644 --- a/libs/models/gl_skin.c +++ b/libs/models/gl_skin.c @@ -185,6 +185,7 @@ build_skin (skin_t *skin, int cmap) s = &player_skin; if (!s->tex) // we haven't loaded the player model yet return; + texnum = skin_textures + cmap; fb_texnum = 0; if (s->fb) @@ -196,13 +197,13 @@ build_skin (skin_t *skin, int cmap) if (vid.is8bit) { build_skin_8 (s->tex, texnum, skin_cmap[cmap], scaled_width, scaled_height, false); - if (s->fb) + if (s->fb && s->fb_tex) build_skin_8 (s->fb_tex, fb_texnum, skin_cmap[cmap], scaled_width, scaled_height, true); } else { build_skin_32 (s->tex, texnum, skin_cmap[cmap], scaled_width, scaled_height, false); - if (s->fb) + if (s->fb && s->fb_tex) build_skin_32 (s->fb_tex, fb_texnum, skin_cmap[cmap], scaled_width, scaled_height, true); }