From f26bd4dc5121d19d20373360411ec5c31d936da4 Mon Sep 17 00:00:00 2001 From: Jonathan Marshall Date: Thu, 3 Mar 2011 16:10:05 +1300 Subject: [PATCH] ensure that we clear the items in the login window - fixes spurious error messages about textures being cleaned up/unable to release. (cherry picked from commit e1a37746018e21e5901466e350ac105125019ea4) --- xbmc/GUIWindowLoginScreen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xbmc/GUIWindowLoginScreen.cpp b/xbmc/GUIWindowLoginScreen.cpp index b500761c2d087..1f06a5ccd9c66 100644 --- a/xbmc/GUIWindowLoginScreen.cpp +++ b/xbmc/GUIWindowLoginScreen.cpp @@ -69,6 +69,7 @@ bool CGUIWindowLoginScreen::OnMessage(CGUIMessage& message) case GUI_MSG_WINDOW_DEINIT: { m_viewControl.Reset(); + m_vecItems->Clear(); } break;