From caeb4b7a7efbd1b6446ea21c48e079557ac5d45a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 1 Aug 2019 10:49:31 +0200 Subject: [PATCH] CEventLoop: Add a missing initializer to EventLoopTimer. --- Libraries/LibCore/CEventLoop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibCore/CEventLoop.h b/Libraries/LibCore/CEventLoop.h index 54bbf1d240..7939a83f99 100644 --- a/Libraries/LibCore/CEventLoop.h +++ b/Libraries/LibCore/CEventLoop.h @@ -73,7 +73,7 @@ private: struct EventLoopTimer { int timer_id { 0 }; int interval { 0 }; - timeval fire_time; + timeval fire_time { 0, 0 }; bool should_reload { false }; WeakPtr owner;