From c4204d336502e7f3c85eee8d27b967d6fa3ed8ab Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Fri, 15 May 2020 08:54:40 -0700 Subject: [PATCH] fix #4330 --- src/smt/theory_pb.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/smt/theory_pb.cpp b/src/smt/theory_pb.cpp index 00b0e24fe..097451035 100644 --- a/src/smt/theory_pb.cpp +++ b/src/smt/theory_pb.cpp @@ -513,7 +513,7 @@ namespace smt { return true; } - ineq* c = alloc(ineq, m_mpz_mgr, literal(abv), pb.is_eq(atom)); + scoped_ptr c = alloc(ineq, m_mpz_mgr, literal(abv), pb.is_eq(atom)); c->m_args[0].m_k = pb.get_k(atom); numeral& k = c->m_args[0].m_k; arg_t& args = c->m_args[0]; @@ -554,7 +554,6 @@ namespace smt { // fall-through case l_true: ctx.mk_th_axiom(get_id(), 1, &lit); - dealloc(c); return true; case l_undef: break; @@ -584,7 +583,7 @@ namespace smt { init_watch_ineq(*c); init_watch(abv); - m_var_infos[abv].m_ineq = c; + m_var_infos[abv].m_ineq = c.detach(); m_ineqs_trail.push_back(abv); TRACE("pb", display(tout, *c);); return true;