diff options
author | Hyihong Chae <hh.chae@samsung.com> | 2017-06-07 14:35:09 +0900 |
---|---|---|
committer | Hyihong Chae <hh.chae@samsung.com> | 2017-06-07 14:35:09 +0900 |
commit | 920ff5fd83578a32316d92ddb0025ee3a614742f (patch) | |
tree | 55ac0e33f817c256e343963b268b4b8f1432c77c | |
parent | 2dd55dd10cb17da11803afe1ea8d781fac32e239 (diff) | |
download | smartcard-service-accepted/tizen_3.0_ivi.tar.gz smartcard-service-accepted/tizen_3.0_ivi.tar.bz2 smartcard-service-accepted/tizen_3.0_ivi.zip |
fix SATIZENVUL-265 issue(SVACE: CPP_ALLOCATION_ERRORS)submit/tizen_3.0/20170630.014339submit/tizen_3.0/20170612.003500submit/tizen_3.0/20170607.054131accepted/tizen/3.0/wearable/20170612.045957accepted/tizen/3.0/wearable/20170609.061531accepted/tizen/3.0/tv/20170630.081914accepted/tizen/3.0/tv/20170612.045954accepted/tizen/3.0/tv/20170609.061634accepted/tizen/3.0/mobile/20170630.081911accepted/tizen/3.0/mobile/20170612.045951accepted/tizen/3.0/mobile/20170609.061719accepted/tizen/3.0/ivi/20170630.081921accepted/tizen/3.0/ivi/20170612.050000accepted/tizen/3.0/ivi/20170609.061800accepted/tizen/3.0/common/20170612.121804accepted/tizen/3.0/common/20170609.062102tizen_3.0accepted/tizen_3.0_wearableaccepted/tizen_3.0_tvaccepted/tizen_3.0_mobileaccepted/tizen_3.0_iviaccepted/tizen_3.0_common
Change-Id: Ifc8dfc1142859a0e2e6e505cf6bf7cc50fc1f197
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
-rwxr-xr-x | packaging/smartcard-service.spec | 2 | ||||
-rw-r--r-- | server/ServerReader.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packaging/smartcard-service.spec b/packaging/smartcard-service.spec index 5861314..4ff1378 100755 --- a/packaging/smartcard-service.spec +++ b/packaging/smartcard-service.spec @@ -8,7 +8,7 @@ ################################################################################ Name: smartcard-service Summary: Smartcard Service FW -Version: 0.1.52 +Version: 0.1.53 Release: 0 Group: Network & Connectivity Requires: %{name}-common = %{version}-%{release} diff --git a/server/ServerReader.cpp b/server/ServerReader.cpp index 4b880d2..580c697 100644 --- a/server/ServerReader.cpp +++ b/server/ServerReader.cpp @@ -78,7 +78,7 @@ namespace smartcard_service_api { ServerSession *session = NULL; - session = new ServerSession(this, certHashes, caller, terminal); + session = new (std::nothrow) ServerSession(this, certHashes, caller, terminal); if (session == NULL) return session; |