mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Oximetry crash fix #1
This commit is contained in:
parent
41f719fce2
commit
04b06a9f6d
@ -328,9 +328,10 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
if (len == 0) {
|
||||
// lost sync
|
||||
if (started_reading) {
|
||||
do {
|
||||
while (idx < size) {
|
||||
res = buffer.at(idx++);
|
||||
} while (res != resimport || idx < size);
|
||||
if (res == resimport) break;
|
||||
}
|
||||
// add a dummy to make up for it.
|
||||
qDebug() << "lost sync, padding...";
|
||||
oxirec->append(OxiRecord(0,0,0));
|
||||
|
@ -816,7 +816,7 @@ bool Machine::hasModifiedSessions()
|
||||
|
||||
const QString summaryFileName = "Summaries.xml";
|
||||
|
||||
bool Machine::LoadSummary()
|
||||
bool Machine::LoadSummary(bool everything)
|
||||
{
|
||||
QTime time;
|
||||
time.start();
|
||||
@ -864,6 +864,8 @@ bool Machine::LoadSummary()
|
||||
qint64 first = e.attribute("first", 0).toLongLong();
|
||||
qint64 last = e.attribute("last", 0).toLongLong();
|
||||
|
||||
|
||||
|
||||
if (s_ok) {
|
||||
Session * sess = new Session(this, sessid);
|
||||
QString filename = sumpath + QString().sprintf("%08lx.000", sessid);
|
||||
|
@ -86,7 +86,7 @@ class Machine
|
||||
|
||||
//! \brief Load all Machine summary data
|
||||
bool Load();
|
||||
bool LoadSummary();
|
||||
bool LoadSummary(bool everything = false);
|
||||
|
||||
//! \brief Save all Sessions where changed bit is set.
|
||||
bool Save();
|
||||
|
Loading…
Reference in New Issue
Block a user