Remove box terminating code
authorleerang song <leerang.song@samsung.com>
Fri, 13 Sep 2013 09:27:31 +0000 (18:27 +0900)
committerSoo-Hyun Choi <sh9.choi@samsung.com>
Fri, 13 Sep 2013 10:16:01 +0000 (19:16 +0900)
[Issue#]    N/A
[Problem]   Crash occured when destroying popup
[Cause]     No need to terminate because coremodule is singleton object
            (static variables can be destructed by auto)
[Solution]  Remove box terminating code

[SCMRequest] N/A

Change-Id: I46b73b569dfce3af56e090bf636add6622a0026d

src/Plugin/AppBoxPlugin/AppBoxManager.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index ea71ad1..00a4465
@@ -43,7 +43,6 @@ AppBoxManager::AppBoxManager(IBoxPluginFactoryPtr factory)
 AppBoxManager::~AppBoxManager()
 {
     AppBoxObserver::Instance()->shutdown();
-    WRT::CoreModuleSingleton::Instance().Terminate();
 }
 
 bool AppBoxManager::requestAddBox(BoxInfoPtr boxInfo, EwkContextPtr ewkContext)