From be541cbae2190545c14989c020d9d0c14b711880 Mon Sep 17 00:00:00 2001 From: Tavis Ormandy Date: Sat, 29 Jun 2024 22:20:42 -0700 Subject: Restore expr context after calc, #2330 #2343 Part of the expr_t::compile() process is to store the current scope, but In post_t::add_to_value that scope is temporary and on the stack. Restore the original context after that process is complete. --- src/post.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/post.cc') diff --git a/src/post.cc b/src/post.cc index 72930b46..e2063a36 100644 --- a/src/post.cc +++ b/src/post.cc @@ -642,11 +642,12 @@ void post_t::add_to_value(value_t& value, const optional& expr) const add_or_set_value(value, xdata_->compound_value); } else if (expr) { - bind_scope_t bound_scope(*expr->get_context(), - const_cast(*this)); + scope_t *ctx = expr->get_context(); + bind_scope_t bound_scope(*ctx, const_cast(*this)); #if 1 value_t temp(expr->calc(bound_scope)); add_or_set_value(value, temp); + expr->set_context(ctx); #else if (! xdata_) xdata_ = xdata_t(); xdata_->value = expr->calc(bound_scope); -- cgit v1.2.3