Fixed memory leak in video quit implementation for Android.
diff --git a/src/video/android/SDL_androidvideo.c b/src/video/android/SDL_androidvideo.c
index ed3d3b3..5e03461 100644
--- a/src/video/android/SDL_androidvideo.c
+++ b/src/video/android/SDL_androidvideo.c
@@ -86,6 +86,7 @@ Android_SuspendScreenSaver(_THIS)
static void
Android_DeleteDevice(SDL_VideoDevice * device)
{
+ SDL_free(device->driverdata);
SDL_free(device);
}