Fix memory leak in PRS1 loader.

This commit is contained in:
sawinglogz 2020-01-29 10:43:58 -05:00
parent cb576437ab
commit b82d5dc971
2 changed files with 2 additions and 0 deletions

View File

@ -7772,6 +7772,7 @@ QList<PRS1DataChunk *> PRS1Import::CoalesceWaveformChunks(QList<PRS1DataChunk *>
qWarning().noquote() << relativePath(chunk->m_path) << "skipping session" << chunk->sessionid << ":"
<< QDateTime::fromMSecsSinceEpoch(chunk->timestamp*1000).toString() << "older than"
<< QDateTime::fromMSecsSinceEpoch(ignoreBefore*1000).toString();
delete chunk;
continue;
}
coalescedAndFiltered.append(chunk);

View File

@ -281,6 +281,7 @@ public:
delete summary;
for (auto & e : m_event_chunks.values()) { delete e; }
for (int i=0;i < waveforms.size(); ++i) { delete waveforms.at(i); }
for (auto & c : oximetry) { delete c; }
}
//! \brief PRS1Import thread starts execution here.