diff --git a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp index 76cad9a6..0a661b2f 100644 --- a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp @@ -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)); diff --git a/sleepyhead/SleepLib/machine.cpp b/sleepyhead/SleepLib/machine.cpp index b1718639..50a8d95d 100644 --- a/sleepyhead/SleepLib/machine.cpp +++ b/sleepyhead/SleepLib/machine.cpp @@ -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); diff --git a/sleepyhead/SleepLib/machine.h b/sleepyhead/SleepLib/machine.h index e6310679..ef4ca933 100644 --- a/sleepyhead/SleepLib/machine.h +++ b/sleepyhead/SleepLib/machine.h @@ -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();