From 00c2ef1c0aa3bc4ada8c8b86d7cbbec522e4844b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 11 Dec 2018 22:12:57 +0000 Subject: [PATCH] Fix crash when using the player with automatic audio analysis enabled in prefs (#1419). --- src/tools/dcpomatic_player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index b1227b2f5..550b89ed4 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -411,7 +411,7 @@ public: reset_film (); try { shared_ptr dcp (new DCPContent(dir)); - _film->examine_and_add_content (dcp); + _film->examine_and_add_content (dcp, true); bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content")); if (!ok || !report_errors_from_last_job(this)) { return; -- 2.30.2