Merge branch 'parallaxsw:master' into master

This commit is contained in:
Harsh Vardhan 2023-07-10 08:40:51 -07:00 committed by GitHub
commit c1d2afc588
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ Network::findPortsMatching(const Cell *cell,
else {
// bus[0]
Port *port_bit = findBusBit(port, from);
matches.push_back(port_bit);
if (port_bit != nullptr)
matches.push_back(port_bit);
}
}
}