Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix double free in video test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
ferzkopp committed Apr 24, 2013
1 parent b5717a3 commit f585ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testautomation_video.c
Expand Up @@ -1698,7 +1698,7 @@ video_getSetWindowData(void *arg)
if (referenceUserdata != NULL) SDL_free(referenceUserdata);
if (referenceUserdata2 != NULL) SDL_free(referenceUserdata2);
if (userdata != NULL) SDL_free(userdata);
if (userdata != NULL) SDL_free(userdata);
if (userdata2 != NULL) SDL_free(userdata2);

return returnValue;
}
Expand Down

0 comments on commit f585ced

Please sign in to comment.