swaroop: fix crash when there's an incorrect ecinema KDM. v2.15.11
authorCarl Hetherington <cth@carlh.net>
Wed, 10 Jul 2019 19:47:08 +0000 (20:47 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 10 Jul 2019 19:47:08 +0000 (20:47 +0100)
src/wx/swaroop_controls.cc

index 782109888a969ec63a11820bfc33b96c422d9b72..5ce6c45fc7a637f6e6c1e99124d596f7698cb422 100644 (file)
@@ -489,7 +489,7 @@ SwaroopControls::select_playlist (int selected, int position)
                        }
                        if (dcp->needs_kdm()) {
                                /* We didn't get a KDM for this */
-                               error_dialog (this, "This playlist cannot be loaded as a KDM is missing.");
+                               error_dialog (this, "This playlist cannot be loaded as a KDM is missing or incorrect.");
                                deselect_playlist ();
                                return;
                        }
@@ -502,10 +502,12 @@ SwaroopControls::select_playlist (int selected, int position)
                                        ffmpeg->add_kdm (*kdm);
                                        ffmpeg->examine (_film, shared_ptr<Job>());
                                } catch (KDMError& e) {
-                                       error_dialog (this, "Could not load KDM.");
+                                       error_dialog (this, "This playlist cannot be loaded as a KDM is missing or incorrect.");
+                                       deselect_playlist ();
+                                       return;
                                }
                        } else {
-                               error_dialog (this, "This playlist cannot be loaded as a KDM is missing.");
+                               error_dialog (this, "This playlist cannot be loaded as a KDM is missing or incorrect.");
                                deselect_playlist ();
                                return;
                        }