From 3e556b18bb3095fa562743ca178428389abd69f2 Mon Sep 17 00:00:00 2001 From: Woochan Lee Date: Tue, 19 Jul 2016 15:09:51 +0900 Subject: [PATCH] Prevent memory curruption. Change-Id: Ib4499afdbcdb988aaae8ad16ba036badebd90518 --- src/lib/interface/UiIfaceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/interface/UiIfaceView.cpp b/src/lib/interface/UiIfaceView.cpp index a62a54f..0be30e9 100644 --- a/src/lib/interface/UiIfaceView.cpp +++ b/src/lib/interface/UiIfaceView.cpp @@ -99,7 +99,7 @@ void UiIfaceViewImpl::onUnload() { this->_state = UI_VIEW_STATE_UNLOAD; if (this->getRemovableContent()) { - this->setContent(NULL); + this->_view->setContent(NULL); return; } } -- 2.34.1