From 3489ccaebdb1eeaf99f0051da121541980e88f63 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 19 Nov 2007 02:24:07 +0000 Subject: [PATCH] explicit lsd close fix --- src/session_impl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/session_impl.cpp b/src/session_impl.cpp index c41079fdc..3132b80c9 100755 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -2317,6 +2317,8 @@ namespace detail void session_impl::stop_lsd() { mutex_t::scoped_lock l(m_mutex); + if (m_lsd.get()) + m_lsd->close(); m_lsd = 0; }