mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 12:11:55 +00:00
Merge remote-tracking branch
'origin/GP-4824_ghizard_PDB_MSDIA_process_types_with_NoType' (#6744)
This commit is contained in:
commit
81149a4dcc
@ -17,6 +17,8 @@ package ghidra.app.util.bin.format.pdb;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import ghidra.app.services.DataTypeManagerService;
|
||||
import ghidra.program.database.data.DataTypeUtilities;
|
||||
import ghidra.program.model.data.*;
|
||||
@ -195,6 +197,9 @@ class PdbDataTypeParser {
|
||||
dataTypeName = "undefined" + dataTypeName;
|
||||
}
|
||||
|
||||
// Deal with other unrecognized types
|
||||
dataTypeName = StringUtils.replace(dataTypeName, "<NoType>", "undefined");
|
||||
|
||||
// Example type representations:
|
||||
// char *[2][3] pointer(array(array(char,3),2))
|
||||
// char *[2][3] * pointer(array(array(pointer(char),3),2))
|
||||
|
Loading…
Reference in New Issue
Block a user