Fixed the memory leak
authorKeebong <keebong.bahn@samsung.com>
Thu, 18 Jul 2013 12:39:35 +0000 (21:39 +0900)
committerKeebong <keebong.bahn@samsung.com>
Thu, 18 Jul 2013 12:51:43 +0000 (21:51 +0900)
Change-Id: I539d11dfd94122430fdff02fafa5292788e1fe2b
Signed-off-by: Keebong <keebong.bahn@samsung.com>
ChangeLog
src/FtSoExecutor.cpp

index f1dd57d..c3bdabe 100644 (file)
--- 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.
index d5c2e30..2d61b51 100644 (file)
@@ -18,7 +18,7 @@
  * @file               FtSoExecutor.cpp
  * This file contains declarations of GTFManager class.
  */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <dlfcn.h>
@@ -407,7 +407,7 @@ CFtSoExecutor::UnloadSo()
        pFnSetLogFileName_Drv = null;
        pFnSetContinueMode_Drv = null;
        pFnSetShowLog_Drv = null;
-       // delete __pLib;
+       delete __pLib;
        return true;
 }