visualtest: use SDL_malloc

This commit is contained in:
Sylvain
2021-11-22 16:22:39 +01:00
committed by Sam Lantinga
parent 30338beb61
commit 5699e0fa0c
8 changed files with 19 additions and 19 deletions

View File

@@ -61,7 +61,7 @@ SDLVisualTest_ParseSUTConfig(char* file, SDLVisualTest_SUTConfig* config)
sizeof(SDLVisualTest_SUTOption));
if(!config->options)
{
SDLTest_LogError("malloc() failed");
SDLTest_LogError("SDL_malloc() failed");
SDL_RWclose(rw);
return 0;
}