summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShobhitAd <adlakhshobhit@gmail.com>2018-09-28 11:10:21 -0700
committerShobhitAd <adlakhshobhit@gmail.com>2018-09-28 11:10:21 -0700
commitbfe12a0810defdf4c81c55e02c385f1e33cbf51c (patch)
treeb28b121b401202d78d1f43236a85cd6fdc4773b0
parent0c72ea1fd9fd2029329153caf6f156dd65f1eb6e (diff)
downloadsdl_core-fix/5.0.0-coverity_shobhit.tar.gz
Fix 148706 Unitialized pointer fieldfix/5.0.0-coverity_shobhit
-rw-r--r--src/components/policy/policy_regular/src/cache_manager.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/policy/policy_regular/src/cache_manager.cc b/src/components/policy/policy_regular/src/cache_manager.cc
index 9accabf59b..7532d5cd37 100644
--- a/src/components/policy/policy_regular/src/cache_manager.cc
+++ b/src/components/policy/policy_regular/src/cache_manager.cc
@@ -103,6 +103,7 @@ CacheManager::CacheManager()
: CacheManagerInterface()
, pt_(new policy_table::Table)
, backup_(new SQLPTRepresentation())
+ , settings_(nullptr)
, update_required(false) {
LOG4CXX_AUTO_TRACE(logger_);
backuper_ = new BackgroundBackuper(this);