mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef/Commands/MediaInfo.cs:
* DiscImageChef/Commands/DeviceInfo.cs: Added support for SCSI sequential devices. * DiscImageChef.Decoders/SCSI/SSC/BlockLimits.cs: * DiscImageChef.Decoders/SCSI/SSC/DensitySupport.cs: * DiscImageChef.Decoders/DiscImageChef.Decoders.csproj: Added decoders for SCSI SSC READ BLOCK LIMITS and REPORT DENSITY SUPPORT. * DiscImageChef.Devices/Device/ScsiCommands/SSC.cs: Corrected ReportDensitySupport. * DiscImageChef.Decoders/SCSI/Modes.cs: Corrected mode size.
This commit is contained in:
@@ -5362,7 +5362,7 @@ namespace DiscImageChef.Decoders.SCSI
|
||||
if (pageResponse[1] + 2 != pageResponse.Length)
|
||||
return null;
|
||||
|
||||
if (pageResponse.Length < 24)
|
||||
if (pageResponse.Length < 16)
|
||||
return null;
|
||||
|
||||
ModePage_0F decoded = new ModePage_0F();
|
||||
|
||||
Reference in New Issue
Block a user