From bbf3f17b858aa20f98423dc774c4bb4e0590659d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 29 May 2014 23:57:58 +0200 Subject: [PATCH] (Android) Properly implement input free function --- android/native/jni/input_android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/native/jni/input_android.c b/android/native/jni/input_android.c index 9e68a616ee..59cadc9028 100644 --- a/android/native/jni/input_android.c +++ b/android/native/jni/input_android.c @@ -2025,7 +2025,7 @@ static bool android_input_key_pressed(void *data, int key) static void android_input_free_input(void *data) { - (void)data; + free(data); } static uint64_t android_input_get_capabilities(void *data)