fix svace issues 20/116720/1 accepted/tizen/3.0/common/20170228.151422 accepted/tizen/3.0/ivi/20170228.055713 accepted/tizen/3.0/mobile/20170228.055633 accepted/tizen/3.0/tv/20170228.055648 accepted/tizen/3.0/wearable/20170228.055658 submit/tizen_3.0/20170228.022154
authorHyihong Chae <hh.chae@samsung.com>
Tue, 28 Feb 2017 02:14:11 +0000 (11:14 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Tue, 28 Feb 2017 02:14:11 +0000 (11:14 +0900)
Change-Id: I390b0c00802f6256c0d523fbb5a7fb77413466fc
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/capi-network-smartcard.spec
src/SEService.cpp

index 2e0f2ad..e0b3952 100755 (executable)
@@ -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
index a85bc22..6c3882f 100755 (executable)
@@ -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);
        }