Fix the prevent issue.
authorHokwon Song <hokwon.song@samsung.com>
Tue, 6 Aug 2013 04:50:24 +0000 (13:50 +0900)
committerHokwon Song <hokwon.song@samsung.com>
Tue, 6 Aug 2013 04:51:42 +0000 (13:51 +0900)
Change-Id: Ib3cf7b65052985773cb4d6c87c11821563b47ca0
Signed-off-by: Hokwon Song <hokwon.song@samsung.com>
src/system/FSys_RuntimeInfoStub.cpp

index 257e075..7b7bd3a 100644 (file)
@@ -266,7 +266,7 @@ _RuntimeInfoStub::SendResponse(int pid, int msg_id, long long size, result rcode
 
        _RuntimeInfoStub* pRuntimeInfoStub = null;
        pRuntimeInfoStub =  _RuntimeInfoStub::GetInstance();
-       SysTryReturn(NID_SYS, pRuntimeInfoStub, , E_SYSTEM, "RuntimeInfoStub is not created.");
+       SysTryCatch(NID_SYS, pRuntimeInfoStub, E_SYSTEM, E_SYSTEM, "RuntimeInfoStub is not created.");
 
        pRuntimeInfoStub->SendDataAsync(pid, data);
 CATCH: