Fixed SVACE issue 71/119171/2 accepted/tizen_3.0_tv accepted/tizen_3.0_wearable accepted/tizen_5.0_unified accepted/tizen_tv accepted/tizen_unified accepted/tizen_wearable tizen_3.0 tizen_5.0 accepted/tizen/3.0/tv/20170316.083400 accepted/tizen/3.0/wearable/20170316.083416 accepted/tizen/4.0/unified/20170816.012741 accepted/tizen/4.0/unified/20170816.015508 accepted/tizen/4.0/unified/20170829.020407 accepted/tizen/5.0/unified/20181102.022417 accepted/tizen/tv/20170316.102027 accepted/tizen/unified/20170316.102057 accepted/tizen/wearable/20170316.102051 submit/tizen/20170316.021517 submit/tizen_3.0/20170316.021356 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100004 submit/tizen_4.0_unified/20170814.115522 submit/tizen_5.0/20181101.000005 tizen_4.0.m1_release
authorjaekuk, lee <juku1999@samsung.com>
Thu, 16 Mar 2017 02:02:15 +0000 (11:02 +0900)
committerjaekuk lee <juku1999@samsung.com>
Thu, 16 Mar 2017 02:05:02 +0000 (19:05 -0700)
Following members are initialized:
       handle_data_callback_, handle_sync_data_callback_.

Change-Id: Iaffe147bdf0d1e492754b377f61b9bf3f87241cb
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
src/node/extension/extension.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index cb3adc6..3443c25
@@ -29,7 +29,9 @@ Extension::Extension(const std::string& path, RuntimeVariableDelegate* delegate)
     destroyed_instance_callback_(NULL),
     shutdown_callback_(NULL),
     handle_msg_callback_(NULL),
-    handle_sync_msg_callback_(NULL) {
+    handle_sync_msg_callback_(NULL),
+    handle_data_callback_(NULL),
+    handle_sync_data_callback_(NULL)  {
 }
 
 Extension::Extension(const std::string& path,
@@ -47,7 +49,9 @@ Extension::Extension(const std::string& path,
     destroyed_instance_callback_(NULL),
     shutdown_callback_(NULL),
     handle_msg_callback_(NULL),
-    handle_sync_msg_callback_(NULL) {
+    handle_sync_msg_callback_(NULL),
+    handle_data_callback_(NULL),
+    handle_sync_data_callback_(NULL)  {
 }
 
 Extension::~Extension() {