Skip to content

Commit

Permalink
Fixed memory leak in video quit implementation for Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jan 26, 2015
1 parent 60f50c7 commit f64e674
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/video/android/SDL_androidvideo.c
Expand Up @@ -86,6 +86,7 @@ Android_SuspendScreenSaver(_THIS)
static void
Android_DeleteDevice(SDL_VideoDevice * device)
{
SDL_free(device->driverdata);
SDL_free(device);
}

Expand Down

0 comments on commit f64e674

Please sign in to comment.