One small change to the ext2spice topVisit code to ignore nodes that
have already been output; i.e., that have EF_PORT set. However, since EF_PORT is now set on all implicit ports, it is likely that this part of the code is no longer exercised at all, and may be removed.
This commit is contained in:
parent
bfdf1227a7
commit
f68c2c7657
|
|
@ -1869,7 +1869,8 @@ topVisit(def, doStub)
|
|||
if (sname == NULL) continue;
|
||||
snode = sname->efnn_node;
|
||||
|
||||
if (snode && (snode->efnode_flags & EF_SUBS_PORT))
|
||||
if (snode && (snode->efnode_flags & EF_SUBS_PORT) &&
|
||||
!(snode->efnode_flags & EF_PORT))
|
||||
{
|
||||
if (snode->efnode_name->efnn_port < 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue