From 70c791fa75bcedc3330619b02bd6661ca69019d8 Mon Sep 17 00:00:00 2001 From: Jihoon Jung Date: Wed, 21 Sep 2016 17:53:50 +0900 Subject: [PATCH] Fix Svace issue - ID : 97406, 97407, 97409, 97410 Change-Id: Ib4be61d65fe27bc48b5cceb675bf92327d969733 --- UICCTerminal.cpp | 8 ++++---- 1 file 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(); -- 2.34.1