AppicationData::application_path() is already asolute path, so
this is unncessary.
Additionally, for the secured USB installation feature, this
res/wgt path can be a symlink, so making absolute path is
unnecessary either.
Change-Id: I9acc530891e9ef908e6e5e25eba2e5c27c2573a6
Signed-off-by: DongHyun Song <dh81.song@samsung.com>
EncryptedFileHandler::EncryptedFileHandler()
: license_handle_(0) {
auto& app_data = ApplicationData::GetInstance();
- wgt_path_ = base::MakeAbsoluteFilePath(
- base::FilePath(app_data.application_path()));
+ wgt_path_ = base::FilePath(app_data.application_path());
res_path_ = wgt_path_.DirName();
app_id_ = app_data.app_id();
LoadLicense();