From 69436714f9daea06e29d358a1b05ab049db94637 Mon Sep 17 00:00:00 2001 From: Koncord Date: Fri, 16 Feb 2018 04:36:44 +0800 Subject: [PATCH] [Server] Fix uninitialized variable --- apps/openmw-mp/Timer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/openmw-mp/Timer.cpp b/apps/openmw-mp/Timer.cpp index 14deb55e1..f2193bd71 100644 --- a/apps/openmw-mp/Timer.cpp +++ b/apps/openmw-mp/Timer.cpp @@ -53,6 +53,7 @@ Timer::Timer(sol::environment &env, sol::function &callback, long msec, sol::tab LOG_MESSAGE_SIMPLE(Log::LOG_TRACE, "Timer::Timer()"); targetMsec = msec; end = true; + markedToDelete = false; } Timer::~Timer()