From 06b1c933b358a986e2e2b2d720cc7afee63ed53b Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 8 Sep 2010 08:25:38 +0000 Subject: Commit patch [#23685] Cleanup/crashfix for AA using win32 ghost. Provided by Mitchell Stokes (Moguri) --- intern/ghost/intern/GHOST_SystemWin32.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index da7a0399f41..33c7a7f15a2 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -207,17 +207,17 @@ GHOST_IWindow* GHOST_SystemWin32::createWindow( } else { // An invalid window could be one that was used to test for AA - GHOST_Window *other_window = ((GHOST_WindowWin32*)window)->getNextWindow(); - - delete window; - window = 0; + window = ((GHOST_WindowWin32*)window)->getNextWindow(); // If another window is found, let the wm know about that one, but not the old one - if (other_window) - { - m_windowManager->addWindow(other_window); - window = other_window; + if (window->getValid()) { + m_windowManager->addWindow(window); } + else { + delete window; + window = 0; + } + } } return window; -- cgit v1.2.3