mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
1bed582491
8 changed files with 51 additions and 14 deletions
|
@ -721,7 +721,8 @@ public interface TraceObjectSchema {
|
|||
for (Map.Entry<String, AttributeSchema> attrEnt : ent.schema.getAttributeSchemas()
|
||||
.entrySet()) {
|
||||
TraceObjectSchema attrSchema = ctx.getSchema(attrEnt.getValue().getSchema());
|
||||
if (TraceObjectInterface.class.isAssignableFrom(attrSchema.getType()) &&
|
||||
if ((TraceObjectInterface.class.isAssignableFrom(attrSchema.getType()) ||
|
||||
TraceObject.class.isAssignableFrom(attrSchema.getType())) &&
|
||||
visited.add(attrSchema)) {
|
||||
nextLevel.add(new Private.CanonicalSearchEntry(
|
||||
ent.path.key(attrEnt.getKey()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue