You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.4 KiB

  1. From e093390b2839f6039a6ff94ed4942fa45c53a418 Mon Sep 17 00:00:00 2001
  2. From: Philippe Coval <philippe.coval@osg.samsung.com>
  3. Date: Tue, 26 Apr 2016 15:28:17 +0200
  4. Subject: [PATCH] [Resource-container] Backported init fix to 1.1-rel
  5. [Resource-container] Fix member var initialization
  6. Incorrect type was used causing build error.
  7. Origin: 6a10062f1fe64ca75ac6d34541bbd295ef052dcb
  8. Author: Inga Stotland <inga.stotland@intel.com>
  9. Change-Id: I701096c3b6512546847cf4e120430f690e920453
  10. Signed-off-by: Inga Stotland <inga.stotland@intel.com>
  11. Reviewed-on: https://gerrit.iotivity.org/gerrit/7759
  12. Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
  13. Reviewed-by: George Nash <george.nash@intel.com>
  14. Reviewed-by: Markus Jung <markus.jung85@gmail.com>
  15. Reviewed-by: Uze Choi <uzchoi@samsung.com>
  16. Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com>
  17. Reviewed-on: https://gerrit.iotivity.org/gerrit/7929
  18. ---
  19. service/resource-container/src/BundleInfoInternal.cpp | 2 +-
  20. 1 file changed, 1 insertion(+), 1 deletion(-)
  21. --- a/service/resource-container/src/BundleInfoInternal.cpp
  22. +++ b/service/resource-container/src/BundleInfoInternal.cpp
  23. @@ -32,8 +32,8 @@ namespace OIC
  24. m_resourceCreator = nullptr;
  25. m_resourceDestroyer = nullptr;
  26. m_bundleHandle = nullptr;
  27. - m_so_bundle = nullptr;
  28. + m_so_bundle = false;
  29. m_loaded = false;
  30. m_activated = false;
  31. m_java_bundle = false;