From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This produces warnings such as: (process:5122): GLib-CRITICAL **: g_main_loop_quit: assertion 'loop != NULL' failed --- src/shared/mainloop-glib.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shared/mainloop-glib.c b/src/shared/mainloop-glib.c index 1bbac5d11..8436969bb 100644 --- a/src/shared/mainloop-glib.c +++ b/src/shared/mainloop-glib.c @@ -47,6 +47,9 @@ void mainloop_init(void) void mainloop_quit(void) { + if (!main_loop) + return; + g_main_loop_quit(main_loop); } -- 2.14.3 -- 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