From 060d3c4d95fe1439ce4ce57b34df964a786c0df4 Mon Sep 17 00:00:00 2001 From: ShobhitAd Date: Tue, 2 Oct 2018 06:09:44 -0700 Subject: Reordered initialization --- src/components/policy/policy_regular/src/cache_manager.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/components/policy/policy_regular/src/cache_manager.cc b/src/components/policy/policy_regular/src/cache_manager.cc index 52fc810c98..226a2e4332 100644 --- a/src/components/policy/policy_regular/src/cache_manager.cc +++ b/src/components/policy/policy_regular/src/cache_manager.cc @@ -103,8 +103,8 @@ CacheManager::CacheManager() : CacheManagerInterface() , pt_(new policy_table::Table) , backup_(new SQLPTRepresentation()) - , settings_(nullptr) - , update_required(false) { + , update_required(false) + , settings_(nullptr) { LOG4CXX_AUTO_TRACE(logger_); backuper_ = new BackgroundBackuper(this); backup_thread_ = threads::CreateThread("Backup thread", backuper_); @@ -827,7 +827,7 @@ void CacheManager::CheckSnapshotInitialization() { *(snapshot_->policy_table.module_config.preloaded_pt) = false; *(snapshot_->policy_table.module_config.full_app_id_supported) = - get_settings()->use_full_app_id(); + get_settings().use_full_app_id(); // SDL must not send certificate in snapshot snapshot_->policy_table.module_config.certificate = -- cgit v1.2.1