From 8e9acb4f96ede38d52eabce9e699891474cca040 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Thu, 6 Jul 2006 01:16:30 +0000 Subject: [PATCH] uninitialized var --- intern/ghost/intern/GHOST_ISystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_ISystem.cpp b/intern/ghost/intern/GHOST_ISystem.cpp index 0c2fce952e5..677978973aa 100644 --- a/intern/ghost/intern/GHOST_ISystem.cpp +++ b/intern/ghost/intern/GHOST_ISystem.cpp @@ -83,7 +83,7 @@ GHOST_TSuccess GHOST_ISystem::createSystem() GHOST_TSuccess GHOST_ISystem::disposeSystem() { - GHOST_TSuccess success; + GHOST_TSuccess success = GHOST_kSuccess; if (m_system) { delete m_system; m_system = 0;