From 45133d8ada88cf3548f05d175da71e988dcd3ae3 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 13 Apr 2021 01:04:32 +0200 Subject: [PATCH] LibJS: Unset m_unwind_until_label in stop_unwind() I don't see a reason to keep this intact, that might only surprise us down the line... --- Userland/Libraries/LibJS/Runtime/VM.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 0a870b9b5a8..d0a928732bc 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -182,7 +182,11 @@ public: m_unwind_until = type; m_unwind_until_label = label; } - void stop_unwind() { m_unwind_until = ScopeType::None; } + void stop_unwind() + { + m_unwind_until = ScopeType::None; + m_unwind_until_label = {}; + } bool should_unwind_until(ScopeType type, FlyString label = {}) const { if (m_unwind_until_label.is_null())