Oximetry crash fix #1

This commit is contained in:
Mark Watkins 2014-09-06 02:20:48 +10:00
parent 41f719fce2
commit 04b06a9f6d
3 changed files with 7 additions and 4 deletions

View File

@ -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));

View File

@ -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);

View File

@ -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();