summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJihoon Jung <jh8801.jung@samsung.com>2016-09-21 17:53:50 +0900
committerJihoon Jung <jh8801.jung@samsung.com>2016-09-21 17:54:25 +0900
commit70c791fa75bcedc3330619b02bd6661ca69019d8 (patch)
tree12ed39567c75fec7729dd7e39781fc973d5a2f31
parent16e00ee9e99c6f5f73c7f1f9c8834bc13b29e624 (diff)
downloadsmartcard-plugin-uicc-accepted/tizen_3.0.m2_mobile.tar.gz
smartcard-plugin-uicc-accepted/tizen_3.0.m2_mobile.tar.bz2
smartcard-plugin-uicc-accepted/tizen_3.0.m2_mobile.zip
- ID : 97406, 97407, 97409, 97410 Change-Id: Ib4be61d65fe27bc48b5cceb675bf92327d969733
-rwxr-xr-xUICCTerminal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/UICCTerminal.cpp b/UICCTerminal.cpp
index 998a6ab..91c7f55 100755
--- a/UICCTerminal.cpp
+++ b/UICCTerminal.cpp
@@ -253,7 +253,7 @@ namespace smartcard_service_api
int UICCTerminal::transmitSync(const ByteArray &command,
ByteArray &response)
{
- int result;
+ int result = SCARD_ERROR_OK;
_BEGIN();
@@ -300,7 +300,7 @@ namespace smartcard_service_api
int UICCTerminal::getATRSync(ByteArray &atr)
{
- int result;
+ int result = SCARD_ERROR_OK;
_BEGIN();
@@ -340,7 +340,7 @@ namespace smartcard_service_api
int UICCTerminal::transmit(const ByteArray &command,
terminalTransmitCallback callback, void *userParam)
{
- int result;
+ int result = SCARD_ERROR_OK;
_BEGIN();
@@ -385,7 +385,7 @@ namespace smartcard_service_api
int UICCTerminal::getATR(terminalGetATRCallback callback,
void *userParam)
{
- int result;
+ int result = SCARD_ERROR_OK;
_BEGIN();