mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Expression is always 'true' or always 'false'.
This commit is contained in:
@@ -298,7 +298,7 @@ namespace DiscImageChef.Filters
|
||||
public override bool Identify(string path)
|
||||
{
|
||||
FileStream fstream = new FileStream(path, FileMode.Open, FileAccess.Read);
|
||||
if(fstream == null || fstream.Length < 128) return false;
|
||||
if(fstream.Length < 128) return false;
|
||||
|
||||
byte[] hdr_b = new byte[128];
|
||||
fstream.Read(hdr_b, 0, 128);
|
||||
|
||||
Reference in New Issue
Block a user