mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code restyling.
This commit is contained in:
@@ -42,7 +42,9 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
Stream stream = imageFilter.GetDataForkStream();
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
if(stream.Length < Marshal.SizeOf<OobBlock>()) return false;
|
||||
|
||||
if(stream.Length < Marshal.SizeOf<OobBlock>())
|
||||
return false;
|
||||
|
||||
byte[] hdr = new byte[Marshal.SizeOf<OobBlock>()];
|
||||
stream.Read(hdr, 0, Marshal.SizeOf<OobBlock>());
|
||||
|
||||
Reference in New Issue
Block a user