From: Jihoon Jung Date: Wed, 21 Sep 2016 08:53:50 +0000 (+0900) Subject: Fix Svace issue X-Git-Tag: submit/tizen/20160922.010515^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70c791fa75bcedc3330619b02bd6661ca69019d8;p=platform%2Fcore%2Fconnectivity%2Fsmartcard-plugin-uicc.git Fix Svace issue - ID : 97406, 97407, 97409, 97410 Change-Id: Ib4be61d65fe27bc48b5cceb675bf92327d969733 --- 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();