From 8aaad2c8af41741da20eb59683175152deda1374 Mon Sep 17 00:00:00 2001 From: win7-7 Date: Wed, 28 Jan 2026 18:14:19 +0200 Subject: [PATCH] Compiles with idle runnables. Compiles with idle runnables. --- xpcom/threads/TimerThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/threads/TimerThread.cpp b/xpcom/threads/TimerThread.cpp index d46b929566..d5f1adbabd 100644 --- a/xpcom/threads/TimerThread.cpp +++ b/xpcom/threads/TimerThread.cpp @@ -605,7 +605,7 @@ TimerThread::FindNextFireTimeForCurrentThread(TimeStamp aDefault, uint32_t aSear uint32_t index = 0; for (auto timers = mTimers.begin(); timers != mTimers.end(); ++timers) { - nsTimerImpl* timer = (*timers).Value(); + nsTimerImpl* timer = (*timers).mTimerImpl; if (!timer) { continue;