summaryrefslogtreecommitdiffstats
path: root/partitionmanager.cpp
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-02-28 18:24:43 +0100
committerDees Troy <dees_troy@teamw.in>2014-02-28 18:59:04 +0100
commit4159aedfaa35e9a41ba9478b7bb00f661c6646d3 (patch)
treecdc9caa6ba475f7bf520c19161b6d872c3b38631 /partitionmanager.cpp
parentMerge "Check crypto footer before offering to decrypt" into android-4.4 (diff)
downloadandroid_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar.gz
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar.bz2
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar.lz
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar.xz
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.tar.zst
android_bootable_recovery-4159aedfaa35e9a41ba9478b7bb00f661c6646d3.zip
Diffstat (limited to 'partitionmanager.cpp')
-rw-r--r--partitionmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index e6193f919..db054d28d 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -1829,7 +1829,7 @@ void TWPartitionManager::Get_Partition_List(string ListType, std::vector<Partiti
while (end_pos != string::npos && start_pos < Restore_List.size()) {
restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
- if (restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up || restore_part->Is_SubPartition) {
+ if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
// Don't allow restore of recovery (causes problems on some devices)
// Don't add subpartitions to the list of items
} else {