aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-08-24 17:16:31 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-08-24 17:18:25 +0300
commite30e71dee35d8e7b1a1c4759bc839533521033e8 (patch)
treec31eb69b3ce664ffb1cea9c273af6ff7a5e4b05e
parent0ad79d629278ff8fd0c4bedffc21e50d7bbcbda1 (diff)
Fix bug in dependency_configs() causing 'no configuration with uuid is linked' error
-rw-r--r--bpkg/database.cxx23
1 files changed, 13 insertions, 10 deletions
diff --git a/bpkg/database.cxx b/bpkg/database.cxx
index 0bbcc59..863ada4 100644
--- a/bpkg/database.cxx
+++ b/bpkg/database.cxx
@@ -842,25 +842,23 @@ namespace bpkg
//
// Note that the linked database of the linking database type is not added
// if allow_own_type is false, however its own linked databases of the
- // host/build2 type are added, if allow_host_type/ allow_build2_type is
+ // host/build2 type are added, if allow_host_type/allow_build2_type is
// true.
//
- linked_databases descended; // Note: we may not add but still descend.
+ linked_databases chain; // Note: we may not add but still descend.
auto add = [&r,
allow_own_type,
allow_host_type,
allow_build2_type,
- &descended]
+ &chain]
(database& db,
const std::string& t,
const auto& add)
{
- if (std::find (descended.begin (), descended.end (), db) !=
- descended.end ())
+ if (std::find (r.begin (), r.end (), db) != r.end () ||
+ std::find (chain.begin (), chain.end (), db) != chain.end ())
return;
- descended.push_back (db);
-
bool own (db.type == t);
bool host (db.type == host_config_type);
bool build2 (db.type == build2_config_type);
@@ -877,10 +875,13 @@ namespace bpkg
(allow_build2_type && build2))
r.push_back (db);
- const linked_configs& lcs (db.explicit_links ());
+ chain.push_back (db);
- for (auto i (lcs.begin_linked ()); i != lcs.end (); ++i)
- add (i->db, db.type, add);
+ {
+ const linked_configs& lcs (db.explicit_links ());
+ for (auto i (lcs.begin_linked ()); i != lcs.end (); ++i)
+ add (i->db, db.type, add);
+ }
// If this is a private host configuration, then also add the parent's
// explicitly linked configurations of the build2 type.
@@ -896,6 +897,8 @@ namespace bpkg
add (ldb, db.type, add);
}
}
+
+ chain.pop_back ();
};
add (*this, type, add);