Fix broken fsflags support

Process_FS_Flags Flags parameter is just a copy not a reference,
not get updated, Mount_Flags always 0 - fix it now.

Thanks to SHM @ XDA-Developers

Change-Id: Ib044db905febfedefee493cfc04fd1cad6f61f8e
This commit is contained in:
Ketut Putu Kumajaya
2015-11-26 06:16:52 +02:00
committed by Dees Troy
parent 00bc702566
commit bfb72b062a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -418,7 +418,7 @@ bool TWPartition::Process_Fstab_Line(string Line, bool Display_Error) {
return true;
}
bool TWPartition::Process_FS_Flags(string& Options, int Flags) {
bool TWPartition::Process_FS_Flags(string& Options, int& Flags) {
int i;
char *p;
char *savep;