mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix memory leak in PRS1 loader.
This commit is contained in:
parent
cb576437ab
commit
b82d5dc971
@ -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);
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user