* DiscImageChef.Filesystems/UCSDPascal/Dir.cs:

Typo.

	* DiscImageChef.Helpers/DateHandlers.cs:
	  Added CP/M timestamp converter.

	* DiscImageChef.Partitions/Acorn.cs:
	  Corrected handling of negative values.

	* DiscImageChef/Commands/ExtractFiles.cs:
	  Corrected behaviour when volume name is missing, null or
	  empty.

	* DiscImageChef.DiscImages/ImagePlugin.cs:
	  Added floppy address mark sector tag.
This commit is contained in:
2016-08-26 01:43:15 +01:00
parent 7465f306c0
commit f9bb6f25c8
21 changed files with 22580 additions and 7 deletions

View File

@@ -86,7 +86,7 @@ namespace DiscImageChef.PartPlugins
int secCyl = bootBlock.discRecords.spt * heads;
int mapSector = bootBlock.startCylinder * secCyl;
if(mapSector >= (int)imagePlugin.GetSectors())
if((ulong)mapSector >= imagePlugin.GetSectors())
return false;
byte[] map = imagePlugin.ReadSector((ulong)mapSector);

View File

@@ -1,3 +1,7 @@
2016-08-26 Natalia Portillo <claunia@claunia.com>
* Acorn.cs: Corrected handling of negative values.
2016-08-22 Natalia Portillo <claunia@claunia.com>
* Human68k.cs: