mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-02 15:32:19 +03:00
Fix UB where image loading fails in certain cases
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
4148234225
commit
b7da899674
@@ -21,7 +21,9 @@ extern "C"
|
|||||||
|
|
||||||
static SDL_Surface* LoadImageRaw(const char* filename, unsigned char** data)
|
static SDL_Surface* LoadImageRaw(const char* filename, unsigned char** data)
|
||||||
{
|
{
|
||||||
//Temporary storage for the image that's loaded
|
*data = NULL;
|
||||||
|
|
||||||
|
// Temporary storage for the image that's loaded
|
||||||
SDL_Surface* loadedImage = NULL;
|
SDL_Surface* loadedImage = NULL;
|
||||||
|
|
||||||
unsigned int width, height;
|
unsigned int width, height;
|
||||||
@@ -84,7 +86,6 @@ SDL_Surface* LoadImageSurface(const char* filename)
|
|||||||
|
|
||||||
if (optimizedImage == NULL)
|
if (optimizedImage == NULL)
|
||||||
{
|
{
|
||||||
VVV_free(data);
|
|
||||||
vlog_error("Image not found: %s", filename);
|
vlog_error("Image not found: %s", filename);
|
||||||
SDL_assert(0 && "Image not found! See stderr.");
|
SDL_assert(0 && "Image not found! See stderr.");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user