From 66bb3109662ff2ff1c25de128b5e3ebc270334eb Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Thu, 3 Oct 2024 18:19:14 -0700 Subject: [PATCH] reset before manager is deallocated Signed-off-by: Nikolaj Bjorner --- src/cmd_context/cmd_context.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/cmd_context/cmd_context.cpp b/src/cmd_context/cmd_context.cpp index ca9bbec26..59de003c8 100644 --- a/src/cmd_context/cmd_context.cpp +++ b/src/cmd_context/cmd_context.cpp @@ -1514,14 +1514,15 @@ void cmd_context::reset(bool finalize) { m_opt = nullptr; m_pp_env = nullptr; m_dt_eh = nullptr; + m_std_subst = nullptr; + m_rev_subst = nullptr; if (m_manager) { dealloc(m_pmanager); m_pmanager = nullptr; if (m_own_manager) { dealloc(m_manager); m_manager = nullptr; - m_std_subst = nullptr; - m_rev_subst = nullptr; + m_manager_initialized = false; } else {