From: Hyihong Chae Date: Tue, 28 Feb 2017 02:14:11 +0000 (+0900) Subject: fix svace issues X-Git-Tag: submit/tizen_3.0/20170228.022154^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F20%2F116720%2F1;p=platform%2Fcore%2Fapi%2Fsmartcard.git fix svace issues Change-Id: I390b0c00802f6256c0d523fbb5a7fb77413466fc Signed-off-by: HyiHong Chae --- 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); }