FIX oximetry Wizard crash: null pointer in list of loaders

This commit is contained in:
LoudSnorer 2024-02-03 09:40:42 -05:00
parent 9558a488a4
commit 40fcce0ebd
2 changed files with 8 additions and 3 deletions

View File

@ -14,6 +14,9 @@
// loader that change loader behaviour or modify channels. // loader that change loader behaviour or modify channels.
//******************************************************************************************** //********************************************************************************************
#define TEST_MACROS_ENABLEDoff
#include <test_macros.h>
// #include <QProgressBar> // #include <QProgressBar>
#include <QApplication> #include <QApplication>
#include <QDir> #include <QDir>
@ -158,7 +161,6 @@ void MD300W1Loader::resetImportTimeout()
bool MD300W1Loader::readDATFile(const QString & path) bool MD300W1Loader::readDATFile(const QString & path)
{ {
QFile file(path); QFile file(path);
qDebug() << "MD300W Loader attempting to read " << path; qDebug() << "MD300W Loader attempting to read " << path;
if (!file.exists()) { if (!file.exists()) {

View File

@ -7,6 +7,9 @@
* License. See the file COPYING in the main directory of the source code * License. See the file COPYING in the main directory of the source code
* for more details. */ * for more details. */
#define TEST_MACROS_ENABLEDoff
#include <test_macros.h>
#include <QThread> #include <QThread>
#include <QMessageBox> #include <QMessageBox>
#include <QFileDialog> #include <QFileDialog>
@ -426,7 +429,7 @@ void OximeterImport::on_fileImportButton_clicked()
oximodule = nullptr; oximodule = nullptr;
Q_FOREACH(SerialOximeter * loader, loaders) { 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; success = true;
oximodule = loader; oximodule = loader;
break; break;