Skip to content

Commit 58bf5ef

Browse files
DebugDirectoryTreeNode: PointerToRawData was always showing 0 and AddressOfRawData was showing the wrong value.
1 parent b9c3311 commit 58bf5ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ILSpy/Metadata/DebugDirectoryTreeNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public DebugDirectoryEntryView(DebugDirectoryEntry entry, string data)
131131
this.Type = entry.Type.ToString();
132132
this.SizeOfRawData = entry.DataSize;
133133
this.AddressOfRawData = entry.DataRelativeVirtualAddress;
134-
this.AddressOfRawData = entry.DataPointer;
134+
this.PointerToRawData = entry.DataPointer;
135135
}
136136
}
137137
}

0 commit comments

Comments
 (0)