From 4931e60bd5b507c39222db963c9540abb7f3a14f Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 19 Jun 2024 21:25:10 -0400 Subject: [PATCH] Fix Crash: Display error message instead of crashing --- oscar/mainwindow.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 66503363..308fa175 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -10,7 +10,6 @@ #define TEST_MACROS_ENABLEDoff #include - #include #include #include @@ -2324,6 +2323,12 @@ void MainWindow::importNonCPAP(MachineLoader &loader) progress.close(); QCoreApplication::processEvents(); } + if (res < 0) { + // res is used as an index to an array and will cause a crash if not handled. + // Negative numbers indicate a problem with the file format or the file does not exist. + QMessageBox::information(this, STR_MessageBox_Information, + tr("There was a problem parsing %1 Data File: %2").arg(name, files[0]),QMessageBox::Ok); + } else if (res == 0) { Notify(tr("There was a problem opening %1 Data File: %2").arg(name, files[0])); return;