mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix Crash: Display error message instead of crashing
This commit is contained in:
parent
7267dafa46
commit
4931e60bd5
@ -10,7 +10,6 @@
|
|||||||
#define TEST_MACROS_ENABLEDoff
|
#define TEST_MACROS_ENABLEDoff
|
||||||
#include <test_macros.h>
|
#include <test_macros.h>
|
||||||
|
|
||||||
|
|
||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
@ -2324,6 +2323,12 @@ void MainWindow::importNonCPAP(MachineLoader &loader)
|
|||||||
progress.close();
|
progress.close();
|
||||||
QCoreApplication::processEvents();
|
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) {
|
if (res == 0) {
|
||||||
Notify(tr("There was a problem opening %1 Data File: %2").arg(name, files[0]));
|
Notify(tr("There was a problem opening %1 Data File: %2").arg(name, files[0]));
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user