diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2018-01-06 Carl Hetherington <cth@carlh.net> + * Fix crash in some cases when an incorrect KDM has been + added to a DCP (#1000). + * Updated de_DE translation from Carsten Kurz. * Fix playhead wandering on some operations (#1112). diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 174d625b8..68443c0cf 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -143,6 +143,8 @@ ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList } } catch (dcp::DCPReadError) { /* The DCP is probably missing */ + } catch (dcp::KDMDecryptionError) { + /* We have an incorrect KDM */ } } else { _kdm->Enable (false); |
