mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-10 13:09:43 +01:00
Free data upon failure in LoadImage()
Otherwise, if SDL_CreateRGBSurfaceFrom() returned NULL, then this memory would be leaked.
This commit is contained in:
parent
626aac59fb
commit
adbab6355b
1 changed files with 1 additions and 0 deletions
|
@ -76,6 +76,7 @@ static SDL_Surface* LoadImage(const char *filename, bool noBlend = true, bool no
|
|||
}
|
||||
else
|
||||
{
|
||||
SDL_free(data);
|
||||
fprintf(stderr,"Image not found: %s\n", filename);
|
||||
SDL_assert(0 && "Image not found! See stderr.");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue