From: Keebong Date: Thu, 18 Jul 2013 12:39:35 +0000 (+0900) Subject: Fixed the memory leak X-Git-Tag: 2.2.1_release~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d4849877b0b7763fa9bb5e567a06d8b854f0c37;p=test%2Ftools%2FFtApp.git Fixed the memory leak Change-Id: I539d11dfd94122430fdff02fafa5292788e1fe2b Signed-off-by: Keebong --- diff --git a/ChangeLog b/ChangeLog index f1dd57d..c3bdabe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013/07/18 +---------- +* Fixed memory leak on UnloadSo. + 2013/07/16 ---------- * http://tizen.org/privilege/appmanager.setting privilege is added. diff --git a/src/FtSoExecutor.cpp b/src/FtSoExecutor.cpp index d5c2e30..2d61b51 100644 --- a/src/FtSoExecutor.cpp +++ b/src/FtSoExecutor.cpp @@ -18,7 +18,7 @@ * @file FtSoExecutor.cpp * This file contains declarations of GTFManager class. */ - + #include #include #include @@ -407,7 +407,7 @@ CFtSoExecutor::UnloadSo() pFnSetLogFileName_Drv = null; pFnSetContinueMode_Drv = null; pFnSetShowLog_Drv = null; - // delete __pLib; + delete __pLib; return true; }