Fix a couple more crash conditions

This commit is contained in:
Mark Watkins 2018-06-09 22:52:07 +10:00
parent b4e69627c7
commit 2d6afa290b
2 changed files with 6 additions and 2 deletions

View File

@ -3167,9 +3167,9 @@ void PRS1Import::run()
session->UpdateSummaries();
// Save is not threadsafe
// loader->saveMutex.lock();
loader->saveMutex.lock();
session->Store(mach->getDataPath());
// loader->saveMutex.unlock();
loader->saveMutex.unlock();
// Unload them from memory
session->TrashEvents();

View File

@ -1188,6 +1188,10 @@ EventDataType Session::SearchValue(ChannelID code, qint64 time, bool square)
qint64 tt = time - el->first();
double i = tt / el->rate();
if (i> cnt) {
qWarning() << "Session" << session() << "time bounds are broken.. There is a fault in the" << machine()->loaderName().toLocal8Bit.data() << "loader";
return 0;
}
int i1 = int(floor(i));
int i2 = int(ceil(i));