summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Kozyrenko <ikozyrenko@luxoft.com>2014-04-08 18:12:13 +0300
committerJustin Dickow <jjdickow@gmail.com>2014-07-09 14:09:19 -0400
commit78640913eec1a038ddb63ecedf5b9a3206c88baf (patch)
treef8ac64a2be0614fca35f796c25272ed030a90555
parent94b238c74c404acb5161aca19b13a659bf449415 (diff)
downloadsmartdevicelink-78640913eec1a038ddb63ecedf5b9a3206c88baf.tar.gz
APPLINK-6718, Core crashes right after application is connected
-rw-r--r--src/components/config_profile/src/profile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/config_profile/src/profile.cc b/src/components/config_profile/src/profile.cc
index 2334d190c..8b0890b76 100644
--- a/src/components/config_profile/src/profile.cc
+++ b/src/components/config_profile/src/profile.cc
@@ -334,7 +334,7 @@ void Profile::UpdateValues() {
if ((0 != ini_read_value(config_file_name_.c_str(),
"Policy", "PreloadedPT", value))
&& ('\0' != *value)) {
- preloaded_pt_file_ = app_config_folder_ + value;
+ preloaded_pt_file_ = app_config_folder_ + '/' + value;
LOG4CXX_INFO(logger_, "Set preloaded policy file to "
<< preloaded_pt_file_);
}