diff options
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2018-01-12 Carl Hetherington <cth@carlh.net> + * Fix crash when loading an incorrect KDM into the player (#1167). + * Desensitize appropriate player menu options when there is no loaded DCP (#1167). diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index f6f329c42..0464ce96e 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -289,13 +289,12 @@ private: DCPOMATIC_ASSERT (dcp); try { dcp->add_kdm (dcp::EncryptedKDM (dcp::file_to_string (wx_to_std (d->GetPath ()), MAX_KDM_SIZE))); + dcp->examine (shared_ptr<Job>()); } catch (exception& e) { error_dialog (this, wxString::Format (_("Could not load KDM (%s)"), std_to_wx(e.what()))); d->Destroy (); return; } - - dcp->examine (shared_ptr<Job>()); } d->Destroy (); |
