From 98ecece5f63aac871ada8d25648df5dcbef8c894 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 28 Nov 2013 16:37:57 +0200 Subject: [PATCH] android: Avoid memory leak warnings for event_loop Move creation of event_loop closer to g_main_loop_run. This avoids calling g_main_loop_unref too many times in initialization error paths. This is safe since g_main_loop_quit eval to NOOP if parameter == NULL. --- android/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/main.c b/android/main.c index fb1650340..ac80c1738 100644 --- a/android/main.c +++ b/android/main.c @@ -556,7 +556,6 @@ int main(int argc, char *argv[]) exit(EXIT_SUCCESS); } - event_loop = g_main_loop_new(NULL, FALSE); signal = setup_signalfd(); if (!signal) return EXIT_FAILURE; @@ -581,6 +580,8 @@ int main(int argc, char *argv[]) DBG("Entering main loop"); + event_loop = g_main_loop_new(NULL, FALSE); + g_main_loop_run(event_loop); g_source_remove(signal); -- 2.47.3