summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-02-07 19:49:11 +0100
committerGerrit Code Review <gerrit2@gerrit>2014-02-07 19:49:11 +0100
commit175cb7b25d8ff2749c951ca69991537203690e7a (patch)
tree6e068762a4b05a5f8e249a42586bb6899c00e51a
parentMerge "Add option to print render time of each frame to log file" into android-4.4 (diff)
parentAdditional mount function call without mount options (diff)
downloadandroid_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar.gz
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar.bz2
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar.lz
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar.xz
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.tar.zst
android_bootable_recovery-175cb7b25d8ff2749c951ca69991537203690e7a.zip
-rw-r--r--partition.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/partition.cpp b/partition.cpp
index 974f7e4a5..3f19b7d61 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -950,7 +950,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");