From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> 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 bfd2a87..830eef2 100644 --- a/android/main.c +++ b/android/main.c @@ -559,7 +559,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; @@ -584,6 +583,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); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html