mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
FIX oximetry Wizard crash: null pointer in list of loaders
This commit is contained in:
parent
9558a488a4
commit
40fcce0ebd
@ -14,6 +14,9 @@
|
||||
// loader that change loader behaviour or modify channels.
|
||||
//********************************************************************************************
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
// #include <QProgressBar>
|
||||
#include <QApplication>
|
||||
#include <QDir>
|
||||
@ -158,7 +161,6 @@ void MD300W1Loader::resetImportTimeout()
|
||||
bool MD300W1Loader::readDATFile(const QString & path)
|
||||
{
|
||||
QFile file(path);
|
||||
|
||||
qDebug() << "MD300W Loader attempting to read " << path;
|
||||
|
||||
if (!file.exists()) {
|
||||
|
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QThread>
|
||||
#include <QMessageBox>
|
||||
#include <QFileDialog>
|
||||
@ -419,14 +422,14 @@ void OximeterImport::on_fileImportButton_clicked()
|
||||
// Make sure filename dialog had time to close properly..
|
||||
QApplication::processEvents();
|
||||
|
||||
qDebug() << "oximod - Chosen filename is " << filename;
|
||||
qDebug() << "oximod - Chosen filename is " << filename;
|
||||
QList<SerialOximeter *> loaders = GetOxiLoaders();
|
||||
|
||||
bool success = false;
|
||||
|
||||
oximodule = nullptr;
|
||||
Q_FOREACH(SerialOximeter * loader, loaders) {
|
||||
if (loader->Open(filename)) {
|
||||
if (loader && loader->Open(filename)) { // there is a null entry in loaders. so ths check is necessary
|
||||
success = true;
|
||||
oximodule = loader;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user