From 3dcf6f95332dfb361580fa309ad018786b9e65de Mon Sep 17 00:00:00 2001 From: Attila Szegedi Date: Thu, 15 Jan 2026 09:16:37 +0100 Subject: [PATCH] Remove the check for dead isolate --- bindings/profilers/wall.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/profilers/wall.cc b/bindings/profilers/wall.cc index 11564677..80be444e 100644 --- a/bindings/profilers/wall.cc +++ b/bindings/profilers/wall.cc @@ -396,7 +396,7 @@ void SignalHandler::HandleProfilerSignal(int sig, return; } auto isolate = Isolate::GetCurrent(); - if (!isolate || isolate->IsDead()) { + if (!isolate) { return; } WallProfiler* prof = g_profilers.GetProfiler(isolate);