Skip to content

Commit

Permalink
Fix display of m_ulExtra field in tables stream header in the PE view
Browse files Browse the repository at this point in the history
  • Loading branch information
ElektroKill committed May 18, 2024
1 parent 4556508 commit 435d088
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dnSpy/dnSpy/Hex/Files/DotNet/TablesHeaderDataImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public TablesHeaderDataImpl(HexBufferSpan span, bool hasExtraData, int rowsField
SortedMask = new StructField<UInt64FlagsData>("m_sorted", new UInt64FlagsData(buffer, pos + 0x10, tableFlagInfos));
pos += 0x18;
Rows = new StructField<ArrayData<UInt32Data>>("m_rows", ArrayData.CreateUInt32Array(buffer, pos, rowsFieldCount));
pos += rowsFieldCount * 4;
if (hasExtraData) {
ExtraData = new StructField<UInt32Data>("m_ulExtra", new UInt32Data(buffer, pos));
pos += 4;
Expand Down

0 comments on commit 435d088

Please sign in to comment.