mirror of
https://github.com/yawut/SDL.git
synced 2026-04-24 23:37:09 -05:00
Fixed crash in testpalette and potential crash in SDL_LoadBMP_RW()
This commit is contained in:
parent
f29cdbb9b7
commit
7e9c50dc26
|
|
@ -218,6 +218,20 @@ SDL_LoadBMP_RW(SDL_RWops * src, int freesrc)
|
|||
if (biClrUsed == 0) {
|
||||
biClrUsed = 1 << biBitCount;
|
||||
}
|
||||
if (biClrUsed > palette->ncolors) {
|
||||
palette->ncolors = biClrUsed;
|
||||
palette->colors =
|
||||
(SDL_Color *) SDL_realloc(palette->colors,
|
||||
palette->ncolors *
|
||||
sizeof(*palette->colors));
|
||||
if (!palette->colors) {
|
||||
SDL_OutOfMemory();
|
||||
was_error = 1;
|
||||
goto done;
|
||||
}
|
||||
} else if (biClrUsed < palette->ncolors) {
|
||||
palette->ncolors = biClrUsed;
|
||||
}
|
||||
if (biSize == 12) {
|
||||
for (i = 0; i < (int) biClrUsed; ++i) {
|
||||
SDL_RWread(src, &palette->colors[i].b, 1, 1);
|
||||
|
|
|
|||
|
|
@ -189,6 +189,8 @@ main(int argc, char **argv)
|
|||
SDL_SetColorKey(boat[0], SDL_SRCCOLORKEY | SDL_RLEACCEL,
|
||||
SDL_MapRGB(boat[0]->format, 0xff, 0x00, 0xff));
|
||||
boatcols = boat[0]->format->palette->ncolors;
|
||||
if (boatcols >= 256)
|
||||
sdlerr("too many colors in sail.bmp");
|
||||
boat[1] = hflip(boat[0]);
|
||||
SDL_SetColorKey(boat[1], SDL_SRCCOLORKEY | SDL_RLEACCEL,
|
||||
SDL_MapRGB(boat[1]->format, 0xff, 0x00, 0xff));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user