Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorErwin Coumans <blender@erwincoumans.com>2006-07-06 05:16:30 +0400
committerErwin Coumans <blender@erwincoumans.com>2006-07-06 05:16:30 +0400
commit8e9acb4f96ede38d52eabce9e699891474cca040 (patch)
treed18f494eeae44c5aec0c4edd4cc5656fafcbb648 /intern
parentf12b19cc2d2ec731f5c2898b52d04e07412b4c66 (diff)
uninitialized var
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_ISystem.cpp2
1 files changed, 1 insertions, 1 deletions
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;