Removed not needed call to SDL_free().

This commit is contained in:
Philipp Wiesemann
2015-03-25 22:48:57 +01:00
parent 728db68685
commit 3279a4dd4b

View File

@@ -82,7 +82,6 @@ DUMMY_CreateDevice(int devindex)
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
if (!device) {
SDL_OutOfMemory();
SDL_free(device);
return (0);
}