mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-09 14:08:03 -05:00
GP-6100 - PDB - fixed NPE due to function null container class
This commit is contained in:
@@ -2228,6 +2228,9 @@ public class DefaultPdbApplicator implements PdbApplicator {
|
||||
|
||||
//==============================================================================================
|
||||
void predefineClass(SymbolPath classPath) {
|
||||
if (classPath == null) {
|
||||
return;
|
||||
}
|
||||
isClassByNamespace.put(classPath, true);
|
||||
for (SymbolPath path = classPath.getParent(); path != null; path = path.getParent()) {
|
||||
if (!isClassByNamespace.containsKey(path)) {
|
||||
|
||||
Reference in New Issue
Block a user