Skip to content

Commit 1484d40

Browse files
committed
Do nothing instead of asserting RunLoop::wakeUp is unreachable
1 parent fca5c31 commit 1484d40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/WTF/wtf/bun/RunLoopBun.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ void RunLoop::stop()
9292

9393
void RunLoop::wakeUp()
9494
{
95-
ASSERT_NOT_REACHED();
95+
// Do nothing. This means that JSRunLoopTimer::Manager::PerVMData's RunLoop::Timer leaks instead
96+
// of being freed.
9697
}
9798

9899
RunLoop::CycleResult RunLoop::cycle(RunLoopMode mode)

0 commit comments

Comments
 (0)