Skip to content
Snippets Groups Projects
Verified Commit b130f1be authored by Mohcine Chraibi's avatar Mohcine Chraibi
Browse files

Fix SegFault when FrameElements is empty

parent d2244215
No related branches found
No related tags found
No related merge requests found
Pipeline #21070 passed
......@@ -175,7 +175,12 @@ void TimerCallback::Execute(vtkObject *caller, unsigned long eventId,
#endif
extern_glyphs_pedestrians_3D->Update();
}
minFrame = frame->GetFrameElements()[0]->GetMinFrame();
auto FrameElements = frame->GetFrameElements();
if(FrameElements.size())
minFrame = frame->GetFrameElements()[0]->GetMinFrame();
else
minFrame = 0;
frameNumber += minFrame;
if(SystemSettings::getShowTrajectories()) {
const std::vector<FrameElement *> &elements=frame->GetFrameElements();
......
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