mirror of https://github.com/encounter/SDL.git
Fix potential memory leak in QueueCmdFillRects
This commit is contained in:
parent
a60986caa8
commit
1db47d468a
|
@ -580,10 +580,10 @@ QueueCmdFillRects(SDL_Renderer *renderer, const SDL_FRect * rects, const int cou
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
cmd->command = SDL_RENDERCMD_NO_OP;
|
cmd->command = SDL_RENDERCMD_NO_OP;
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_small_free(xy, isstack1);
|
|
||||||
SDL_small_free(indices, isstack2);
|
|
||||||
}
|
}
|
||||||
|
SDL_small_free(xy, isstack1);
|
||||||
|
SDL_small_free(indices, isstack2);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
retval = renderer->QueueFillRects(renderer, cmd, rects, count);
|
retval = renderer->QueueFillRects(renderer, cmd, rects, count);
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
|
|
Loading…
Reference in New Issue