[USETUP] Our current FAT ChkDsk being a bit slow when using the right path make

it only perform a full check if dirty bit is set (which should never happen *cough*).

This is needed because otherwise, ReactOS installation takes forever when IopParseDevice is gone
due to slow ChkDsk.
This commit is contained in:
Pierre Schweitzer 2017-12-17 23:26:38 +01:00
parent 806cd16328
commit c8f2befb5f
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -77,7 +77,7 @@ ChkdskPartition(
Status = FileSystem->ChkdskFunc(DriveRoot,
TRUE, /* FixErrors */
FALSE, /* Verbose */
FALSE, /* CheckOnlyIfDirty */
TRUE, /* CheckOnlyIfDirty */
FALSE, /* ScanDrive */
ChkdskCallback); /* Callback */