From 009eeb2d466d71b6e0590da6ac3401aabc096cd6 Mon Sep 17 00:00:00 2001 From: "F. Duncanh" Date: Fri, 7 Nov 2025 23:42:33 -0500 Subject: [PATCH] uxplay.cpp: exit(0) after cleanup() --- uxplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uxplay.cpp b/uxplay.cpp index c3d7ef3..103f1f4 100644 --- a/uxplay.cpp +++ b/uxplay.cpp @@ -3113,5 +3113,6 @@ static void cleanup() { } dbus_connection_unref(dbus_connection); } -#endif +#endif + exit(0); }