# message: DriveInfo: comment out an assert. (LP: #574292) # Fixes a crash if an encrypted volume is detected. # Tests show no regression. === modified file 'Platform/src/Common/IO/DriveInfo.cs' --- Platform/src/Common/IO/DriveInfo.cs 2010-04-20 12:04:33 +0000 +++ Platform/src/Common/IO/DriveInfo.cs 2010-05-20 08:39:22 +0000 @@ -306,7 +306,7 @@ } private static DriveType GetDriveType(DkDisk drive) { - Debug.Assert(drive.IsDrive, "DkDisk is not a drive"); + //Debug.Assert(drive.IsDrive, "DkDisk is not a drive"); // TODO : add support for ram and network volumes DriveType dt = DriveType.Unknown;