From 823266f62748b8336ba52d4edb99f78f429b6f2e Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Thu, 30 Apr 2020 12:42:05 -0400 Subject: [PATCH] Check result of EDFInfo::Parse() --- oscar/SleepLib/loader_plugins/resmed_EDFinfo.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/oscar/SleepLib/loader_plugins/resmed_EDFinfo.cpp b/oscar/SleepLib/loader_plugins/resmed_EDFinfo.cpp index f0571530..9f6f018c 100644 --- a/oscar/SleepLib/loader_plugins/resmed_EDFinfo.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_EDFinfo.cpp @@ -30,7 +30,11 @@ ResMedEDFInfo::~ResMedEDFInfo() { } bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse { - EDFInfo::Parse( ); + if ( ! EDFInfo::Parse( ) ) { + qWarning() << "EDFInfo::Parse failed!"; + sleep(1); + return false; + } // Now massage some stuff into OSCAR's layout int snp = edfHdr.recordingident.indexOf("SRN=");