summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-02-07 04:46:42 +0100
committerDees Troy <dees_troy@teamw.in>2014-02-07 04:46:46 +0100
commit216e042be8c7c0151802cc9476ebb3e912650050 (patch)
tree36bcc97f196cb163f1455bcdcfd00f2caaaa68a6
parentDisable alpha blending for non-transparent bitmaps (diff)
downloadandroid_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar.gz
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar.bz2
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar.lz
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar.xz
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.tar.zst
android_bootable_recovery-216e042be8c7c0151802cc9476ebb3e912650050.zip
-rw-r--r--partition.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/partition.cpp b/partition.cpp
index 95f6bcac4..31af3cfe8 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -949,7 +949,7 @@ bool TWPartition::Mount(bool Display_Error) {
}
return true;
}
- } else if (!exfat_mounted && mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Current_File_System.c_str(), Mount_Flags, Mount_Options.c_str()) != 0) {
+ } else if (!exfat_mounted && mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Current_File_System.c_str(), Mount_Flags, Mount_Options.c_str()) != 0 && mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Current_File_System.c_str(), Mount_Flags, NULL) != 0) {
#ifdef TW_NO_EXFAT_FUSE
if (Current_File_System == "exfat") {
LOGINFO("Mounting exfat failed, trying vfat...\n");