diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dcp.cc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -211,7 +211,12 @@ DCP::read (bool keep_going, ReadErrors* errors, bool ignore_incorrect_picture_mx } } - DCP_ASSERT (pkl_type); + if (!pkl_type) { + /* This asset is in the ASSETMAP but not mentioned in any PKL so we don't + * need to worry about it. + */ + continue; + } if (*pkl_type == CPL::static_pkl_type(*_standard) || *pkl_type == InteropSubtitleAsset::static_pkl_type(*_standard)) { xmlpp::DomParser* p = new xmlpp::DomParser; |
