mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Corrected miscalling current encoding when identifying filesystems.
This commit is contained in:
@@ -66,7 +66,6 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
public virtual bool Identify(IMediaImage imagePlugin, Partition partition)
|
||||
{
|
||||
currentEncoding = Encoding.BigEndianUnicode;
|
||||
if(2 + partition.Start >= partition.End) return false;
|
||||
|
||||
ushort drSigWord;
|
||||
@@ -107,6 +106,7 @@ namespace DiscImageChef.Filesystems
|
||||
public virtual void GetInformation(IMediaImage imagePlugin, Partition partition, out string information,
|
||||
Encoding encoding)
|
||||
{
|
||||
currentEncoding = Encoding.BigEndianUnicode;
|
||||
information = "";
|
||||
|
||||
ushort drSigWord;
|
||||
|
||||
Reference in New Issue
Block a user