From c1d8186da94118dc8dd1c933ba29d6de1c1c470a Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 6 Feb 2025 22:39:48 -0500 Subject: [PATCH] correct situation where a nullptr crash during shutdown would occur if the update timers for RID or TGID ACL on the host were set to 0 (i.e. no update); --- src/host/Host.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/host/Host.cpp b/src/host/Host.cpp index f1effa93..6c8edf6f 100644 --- a/src/host/Host.cpp +++ b/src/host/Host.cpp @@ -1667,11 +1667,11 @@ void Host::setState(uint8_t state) if (m_tidLookup != nullptr) { m_tidLookup->stop(); - delete m_tidLookup; + //delete m_tidLookup; } if (m_ridLookup != nullptr) { m_ridLookup->stop(); - delete m_ridLookup; + //delete m_ridLookup; } } else {