From 3c16e33453ccf365f05e61644eda1f4def877302 Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F" Date: Wed, 13 Mar 2024 13:29:29 +0100 Subject: [PATCH] Removed deadlock in output stream deletion --- cpp_src/device/lasp_streammgr.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/cpp_src/device/lasp_streammgr.cpp b/cpp_src/device/lasp_streammgr.cpp index b92f21b..e8db813 100644 --- a/cpp_src/device/lasp_streammgr.cpp +++ b/cpp_src/device/lasp_streammgr.cpp @@ -447,7 +447,6 @@ void StreamMgr::stopStream(const StreamType t) { if (!_outputStream) { throw rte("Output stream is not running"); } - Lck lck(_mtx); _outputStream.reset(); } // end else }