Skip to content
Snippets Groups Projects
Commit 7ac470df authored by Jean M. Favre's avatar Jean M. Favre
Browse files

Fix issue #17377

When the 2nd line of each timestep block contains a title, it is searched for a time keyword.
If not found, no timestep value was added to the list of timesteps, making it crash when setting
the TIME_STEPS() key
parent 8e638b5e
No related branches found
No related tags found
No related merge requests found
......@@ -114,6 +114,10 @@ int vtkXYZMolReader2::RequestInformation(
tmp >> timeValue;
this->TimeSteps.push_back(timeValue);
}
else
{
this->TimeSteps.push_back(this->NumberOfTimeSteps);
}
}
else
{
......
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