mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Correct PDB info display in PdbInfoCodeView
This commit is contained in:
parent
1006bf465f
commit
f81b75cc27
1 changed files with 2 additions and 2 deletions
|
@ -103,8 +103,8 @@ public class PdbInfoCodeView implements StructConverter, PdbInfo {
|
|||
struct.add(new DWordDataType(), "offset", null);
|
||||
struct.add(new DWordDataType(), "sig", null);
|
||||
struct.add(new DWordDataType(), "age", null);
|
||||
if (pdbName.length() > 0) {
|
||||
struct.add(new StringDataType(), pdbName.length(), "pdbname", null);
|
||||
if (pdbPath.length() > 0) {
|
||||
struct.add(new StringDataType(), pdbPath.length(), "pdbpath", null);
|
||||
}
|
||||
struct.setCategoryPath(new CategoryPath("/PDB"));
|
||||
return struct;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue