Skip to content
Snippets Groups Projects
Commit ab04bfaf authored by Andre Sailer's avatar Andre Sailer
Browse files

Really fix the memory leak, compiled and valgrinded

parent 8946c11b
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,7 @@ LCIOStdHepReader::moveToEvent(int event_number) { ...@@ -95,6 +95,7 @@ LCIOStdHepReader::moveToEvent(int event_number) {
while ( m_currEvent < event_number ) { while ( m_currEvent < event_number ) {
EVENT::LCCollection* particles = m_reader->readEvent(); EVENT::LCCollection* particles = m_reader->readEvent();
if ( 0 == particles ) return EVENT_READER_ERROR; if ( 0 == particles ) return EVENT_READER_ERROR;
delete particles;
++m_currEvent; ++m_currEvent;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment