Merge remote-tracking branch

'origin/GP-4763_ghidra007_rtti_added_skip_of_global_chds--SQUASHED' into
patch (Closes #6704)
This commit is contained in:
Ryan Kurtz 2024-07-17 13:22:02 -04:00
commit bed16f97c1

View File

@ -868,7 +868,12 @@ public class RTTIWindowsClassRecoverer extends RTTIClassRecoverer {
// Get class name from class vftable is in
Namespace classNamespace = classHierarchyDescriptorSymbol.getParentNamespace();
if (classNamespace.isGlobal()) {
Msg.warn(this, "ClassHierarchyDescriptor at " + classHierarchyDescriptorAddress +
" is unexpectedly in the Global namespace so processing cannot continue for " +
"this class");
continue;
}
// get the data type category associated with the given class namespace
Category category = getDataTypeCategory(classNamespace);