From ab4f11e4f5ca8b2da77b6ba039de8ea472defa60 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 13 Apr 2007 05:07:01 +0000 Subject: [PATCH] Fixed linux build... GCC likes to complain. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40696 --- core/EventManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/EventManager.cpp b/core/EventManager.cpp index a84b2561..cf5e14fb 100644 --- a/core/EventManager.cpp +++ b/core/EventManager.cpp @@ -383,7 +383,7 @@ bool EventManager::OnFireEvent(IGameEvent *pEvent, bool bDontBroadcast) /* IGameEventManager2::FireEvent post hook */ bool EventManager::OnFireEvent_Post(IGameEvent *pEvent, bool bDontBroadcast) { - IGameEvent *pEventCopy; + IGameEvent *pEventCopy = NULL; EventHook *pHook; IChangeableForward *pForward; const char *name;