We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a48de33 commit eae36edCopy full SHA for eae36ed
tools/projmgr/src/ProjMgrWorker.cpp
@@ -2680,6 +2680,9 @@ bool ProjMgrWorker::ProcessGpdsc(ContextItem& context) {
2680
}
2681
for (const auto c : components) {
2682
auto component = c->GetComponent();
2683
+ if(!component) {
2684
+ continue;
2685
+ }
2686
if (bootstrap.instance->GetComponentID(false) == component->GetComponentID(false)) {
2687
if (VersionCmp::Compare(bootstrap.instance->GetVersionString(), component->GetVersionString()) > 0) {
2688
// bootstrap has greater version, do not replace it
0 commit comments