From bcffb94eaa52b53678cbbba2bbdbc004f8394e87 Mon Sep 17 00:00:00 2001 From: Adam- Date: Sun, 30 Aug 2009 03:09:08 +0000 Subject: Fixed an uninitialized variable in Timers that could make NickServCollide fail git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2482 5417fbe8-f217-4b02-8779-1006273d7864 --- src/timers.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/timers.cpp') diff --git a/src/timers.cpp b/src/timers.cpp index dada034ec..02e5a3f08 100644 --- a/src/timers.cpp +++ b/src/timers.cpp @@ -25,6 +25,7 @@ Timer::Timer(long time_from_now, time_t now, bool repeating) trigger = now + time_from_now; secs = time_from_now; repeat = repeating; + settime = now; TimerManager::AddTimer(this); } -- cgit