Merge "Additional mount function call without mount options" into android-4.4
This commit is contained in:
+1
-1
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user