summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-03-24 00:01:33 +0100
committerCarl Hetherington <cth@carlh.net>2022-03-24 00:01:33 +0100
commita939e4b642ff9b398920dee1d0154729217347a5 (patch)
tree62a3572a2678d96fa3e79fec79eedc862e096335
parenta1f9a0afa98dda1bcc4c730ebb03efb25bbb38ca (diff)
Don't throw an exception part-way through resolving assets (#2221).
This was applied to libdcp master in 81c6fcba2. It seems wrong to give up in the middle of resolving things, as it might not work if things happen to be in the wrong order.
-rw-r--r--src/lib/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp.cc b/src/lib/dcp.cc
index abdfc7f9e..8fb27db57 100644
--- a/src/lib/dcp.cc
+++ b/src/lib/dcp.cc
@@ -78,7 +78,7 @@ DCP::cpls () const
for (auto i: dcps) {
for (auto j: dcps) {
if (i != j) {
- i->resolve_refs(j->assets());
+ i->resolve_refs(j->assets(true));
}
}
}