mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
Fix an issue with incorrect logging of secure boot state
This commit is contained in:
@@ -1915,9 +1915,7 @@ namespace DiscUtils.Fat
|
||||
throw new DirectoryNotFoundException(string.Format(CultureInfo.InvariantCulture, "The directory '{0}' was not found", path));
|
||||
}
|
||||
|
||||
DirectoryEntry[] entries = dir.Entries;
|
||||
|
||||
foreach (DirectoryEntry de in entries)
|
||||
foreach (DirectoryEntry de in dir.Entries)
|
||||
{
|
||||
bool isDir = (de.Attributes & FatAttributes.Directory) != 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user