Skip to content

Commit 1006bf4

Browse files
committed
fix pdbinfo structure display
1 parent 5806660 commit 1006bf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Ghidra/Features/Base/src/main/java/ghidra/app/util/bin/format/pdb/PdbInfoDotNet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ public DataType toDataType() {
121121
struct.add(new StringDataType(), magic.length, "signature", null);
122122
struct.add(new GuidDataType(), "guid", null);
123123
struct.add(new DWordDataType(), "age", null);
124-
if (pdbName.length() > 0) {
125-
struct.add(new StringDataType(), pdbName.length(), "pdbname", null);
124+
if (pdbPath.length() > 0) {
125+
struct.add(new StringDataType(), pdbPath.length(), "pdbpath", null);
126126
}
127127
struct.setCategoryPath(new CategoryPath("/PDB"));
128128
return struct;

0 commit comments

Comments
 (0)