Skip to content

Commit

Permalink
Add update missed from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Feb 4, 2024
1 parent 1f990bf commit 8c53dd1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions MetadataExtractor/IO/BufferReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ public long GetInt64()

public ulong GetUInt64()
{
var bytes = _bytes.Slice(_position, 8);
Advance(8);
var bytes = Advance(8);

return _isBigEndian
? BinaryPrimitives.ReadUInt64BigEndian(bytes)
Expand Down

0 comments on commit 8c53dd1

Please sign in to comment.