* DiscImageChef.Console/DicConsole.cs:

Added methods without formatting.

	* DiscImageChef.Decoders/ATA.cs:
	  Typo.

	* DiscImageChef.Decoders/SCSI.cs:
	  Don't try to decode Version Descriptors if there are none.
	Also there are devices on the wild with less than 8 VDs.

	* DiscImageChef/Commands/DeviceInfo.cs:
	  Use a format-less output.
This commit is contained in:
2015-10-19 01:37:23 +01:00
parent fb0cae95a3
commit b6722f3e8a
3 changed files with 1436 additions and 1418 deletions

2
ATA.cs
View File

@@ -1853,7 +1853,7 @@ namespace DiscImageChef.Decoders
public static IdentifyDevice? DecodeIdentifyDevice(byte[] IdentifyDeviceResponse)
{
if (IdentifyDeviceResponse != null)
if (IdentifyDeviceResponse == null)
return null;
if (IdentifyDeviceResponse.Length != 512)

View File

@@ -1,3 +1,12 @@
2015-10-19 Natalia Portillo <claunia@claunia.com>
* ATA.cs:
Typo.
* SCSI.cs:
Don't try to decode Version Descriptors if there are none.
Also there are devices on the wild with less than 8 VDs.
2015-10-19 Natalia Portillo <claunia@claunia.com>
* ATA.cs:

2843
SCSI.cs

File diff suppressed because it is too large Load Diff