We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996f6d5 commit 5617485Copy full SHA for 5617485
Ghidra/Features/PDB/src/main/java/ghidra/app/util/pdb/pdbapplicator/DefaultPdbApplicator.java
@@ -2228,6 +2228,9 @@ boolean isClass(SymbolPath path) {
2228
2229
//==============================================================================================
2230
void predefineClass(SymbolPath classPath) {
2231
+ if (classPath == null) {
2232
+ return;
2233
+ }
2234
isClassByNamespace.put(classPath, true);
2235
for (SymbolPath path = classPath.getParent(); path != null; path = path.getParent()) {
2236
if (!isClassByNamespace.containsKey(path)) {
0 commit comments