[Resource-container] Fix member var initialization
authorInga Stotland <inga.stotland@intel.com>
Tue, 12 Apr 2016 18:22:06 +0000 (11:22 -0700)
committerUze Choi <uzchoi@samsung.com>
Fri, 15 Apr 2016 04:47:17 +0000 (04:47 +0000)
Incorrect type was used causing build error.

Change-Id: I701096c3b6512546847cf4e120430f690e920453
Signed-off-by: Inga Stotland <inga.stotland@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/7759
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: George Nash <george.nash@intel.com>
Reviewed-by: Markus Jung <markus.jung85@gmail.com>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
service/resource-container/src/BundleInfoInternal.cpp

index a15ae9c..893db00 100644 (file)
@@ -32,8 +32,8 @@ namespace OIC
             m_resourceCreator = nullptr;
             m_resourceDestroyer = nullptr;
             m_bundleHandle = nullptr;
-            m_so_bundle = nullptr;
 
+            m_so_bundle = false;
             m_loaded = false;
             m_activated = false;
             m_java_bundle = false;