From cd00d346bb30b78bf81a75f173a9be85b092560f Mon Sep 17 00:00:00 2001 From: Hyihong Chae Date: Tue, 28 Feb 2017 11:14:11 +0900 Subject: [PATCH] fix svace issues Change-Id: I390b0c00802f6256c0d523fbb5a7fb77413466fc Signed-off-by: HyiHong Chae --- packaging/capi-network-smartcard.spec | 2 +- src/SEService.cpp | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/packaging/capi-network-smartcard.spec b/packaging/capi-network-smartcard.spec index 2e0f2ad..e0b3952 100755 --- a/packaging/capi-network-smartcard.spec +++ b/packaging/capi-network-smartcard.spec @@ -1,6 +1,6 @@ Name: capi-network-smartcard Summary: A Smartcard library in Native API -Version: 0.0.8 +Version: 0.0.9 Release: 1 Group: Network & Connectivity/Smartcard License: Apache-2.0 diff --git a/src/SEService.cpp b/src/SEService.cpp index a85bc22..6c3882f 100755 --- a/src/SEService.cpp +++ b/src/SEService.cpp @@ -46,24 +46,27 @@ namespace smartcard_service_api SEService::SEService(void *user_data, serviceConnected handler) throw(ErrorIO &, ErrorIllegalParameter &) : - SEServiceHelper(), handle(-1), - listener(NULL), version(VERSION) + SEServiceHelper(), handle(-1), listener(NULL), + event_handler(NULL), event_handler_context(NULL), + proxy(NULL), version(VERSION) { initialize(user_data, handler); } SEService::SEService(void *user_data, SEServiceListener *listener) throw(ErrorIO &, ErrorIllegalParameter &) : - SEServiceHelper(), handle(-1), - handler(NULL), version(VERSION) + SEServiceHelper(), handle(-1), handler(NULL), + event_handler(NULL), event_handler_context(NULL), + proxy(NULL), version(VERSION) { initialize(user_data, listener); } SEService::SEService(void *user_data) throw(ErrorIO &, ErrorIllegalParameter &, ExceptionBase &) : - SEServiceHelper(), handle(-1), - handler(NULL), version(VERSION) + SEServiceHelper(), handle(-1), handler(NULL), listener(NULL), + event_handler(NULL), event_handler_context(NULL), + proxy(NULL), version(VERSION) { initializeSync(user_data); } -- 2.34.1