1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 06:56:40 +02:00

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
This commit is contained in:
Adam-
2009-08-30 03:09:08 +00:00
parent 7161edab00
commit bcffb94eaa
+1
View File
@@ -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);
}