From 659b9b1e8c5f59c1673f31b89f07cbf612821516 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Tue, 29 Jun 2021 15:52:35 +0200 Subject: [PATCH] Potential fix for SDR++ not stopping on Linux --- core/src/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/core.cpp b/core/src/core.cpp index 5333f30..e3ca93f 100644 --- a/core/src/core.cpp +++ b/core/src/core.cpp @@ -433,5 +433,7 @@ int sdrpp_main(int argc, char *argv[]) { glfwDestroyWindow(core::window); glfwTerminate(); + sigpath::signalPath.stop(); + return 0; }