From 7d30060c4e9739563b14f7eddc62ee39f4b3b556 Mon Sep 17 00:00:00 2001 From: jriegel Date: Sat, 22 Nov 2014 16:41:22 +0100 Subject: [PATCH] fix in destruction of the application --- src/App/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Application.cpp b/src/App/Application.cpp index 7c2795b925..e7b9af3257 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -912,7 +912,7 @@ void Application::destructObserver(void) if ( _pConsoleObserverStd ) { Console().DetachObserver(_pConsoleObserverStd); delete _pConsoleObserverStd; - _pConsoleObserverFile = 0; + _pConsoleObserverStd = 0; } }