diff options
author | Dees_Troy <dees_troy@yahoo.com> | 2013-06-20 22:24:48 +0200 |
---|---|---|
committer | Gerrit Code Review <gerrit@5.9.244.119> | 2013-07-01 22:49:33 +0200 |
commit | 1872795445b2f7e6815f8c3c4f8f8059c0648b59 (patch) | |
tree | 02dc2fa95b7358c2c2019e131427e68a1a3bc758 | |
parent | Fix backup of datadata (diff) | |
download | android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar.gz android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar.bz2 android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar.lz android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar.xz android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.tar.zst android_bootable_recovery-1872795445b2f7e6815f8c3c4f8f8059c0648b59.zip |
Diffstat (limited to '')
-rw-r--r-- | data.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -544,9 +544,11 @@ void DataManager::SetBackupFolder() SetValue(TW_ZIP_LOCATION_VAR, storage_path); } else { zip_root= zip_path; - zip_root.resize(storage_path.size() + 1); - if (zip_root != storage_path) + zip_root.resize(storage_path.size()); + if (zip_root != storage_path) { + LOGINFO("DataManager::SetBackupFolder zip path was %s changing to %s, %s\n", zip_path.c_str(), storage_path.c_str(), zip_root.c_str()); SetValue(TW_ZIP_LOCATION_VAR, storage_path); + } } } else { if (PartitionManager.Fstab_Processed() != 0) @@ -1086,10 +1088,6 @@ void DataManager::ReadSettingsFile(void) // Remount failed, default back to internal storage SetValue(TW_USE_EXTERNAL_STORAGE, 0); PartitionManager.Mount_Current_Storage(true); - string int_zip_path; - GetValue(TW_ZIP_INTERNAL_VAR, int_zip_path); - SetValue(TW_USE_EXTERNAL_STORAGE, 0); - SetValue(TW_ZIP_LOCATION_VAR, int_zip_path); } } else { PartitionManager.Mount_Current_Storage(true); |