mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-12-08 07:32:32 +00:00
Removed unnecessary call to free() in testoverlay2 program.
This commit is contained in:
@@ -403,7 +403,6 @@ main(int argc, char **argv)
|
|||||||
RawMooseData = (Uint8 *) malloc(MOOSEFRAME_SIZE * MOOSEFRAMES_COUNT);
|
RawMooseData = (Uint8 *) malloc(MOOSEFRAME_SIZE * MOOSEFRAMES_COUNT);
|
||||||
if (RawMooseData == NULL) {
|
if (RawMooseData == NULL) {
|
||||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Can't allocate memory for movie !\n");
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Can't allocate memory for movie !\n");
|
||||||
free(RawMooseData);
|
|
||||||
quit(1);
|
quit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user