We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a228b16 commit d7131dfCopy full SHA for d7131df
SabreTools.Serialization/Readers/GCF.cs
@@ -261,7 +261,7 @@ public class GCF : BaseBinaryReader<Data.Models.GCF.File>
261
#endregion
262
263
// Cache the current offset
264
- initialOffset = data.Position;
+ long afterChecksumPosition = data.Position;
265
266
#region Checksum Map Header
267
@@ -304,7 +304,7 @@ public class GCF : BaseBinaryReader<Data.Models.GCF.File>
304
305
306
// Seek to end of checksum section, just in case
307
- data.SeekIfPossible(initialOffset + checksumHeader.ChecksumSize, SeekOrigin.Begin);
+ data.SeekIfPossible(afterChecksumPosition + checksumHeader.ChecksumSize, SeekOrigin.Begin);
308
309
#region Data Block Header
310
0 commit comments