From dd81dad1ad407390d55cc818f64552e523c459b5 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 24 Mar 2014 07:12:26 -0400 Subject: [PATCH] Added an assert to help static analyzer. --- src/video/SDL_bmp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video/SDL_bmp.c b/src/video/SDL_bmp.c index 6d24aa25d..797863550 100644 --- a/src/video/SDL_bmp.c +++ b/src/video/SDL_bmp.c @@ -33,6 +33,7 @@ */ #include "SDL_video.h" +#include "SDL_assert.h" #include "SDL_endian.h" #include "SDL_pixels_c.h" @@ -268,6 +269,7 @@ SDL_LoadBMP_RW(SDL_RWops * src, int freesrc) /* Load the palette, if any */ palette = (surface->format)->palette; if (palette) { + SDL_assert(biBitCount <= 8); if (biClrUsed == 0) { biClrUsed = 1 << biBitCount; }