Skip to content
Snippets Groups Projects
Commit d9f2727e authored by David C. Lonie's avatar David C. Lonie Committed by Code Review
Browse files

Merge topic '14615-fix-mpi-segfault' into master

e52eff07 Return early in TransformPoints if input is NULL.
parents 86388bee e52eff07
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,10 @@ void vtkProjectedTetrahedraMapper::TransformPoints(
const float modelview_mat[16],
vtkFloatArray *outPoints)
{
if (!inPoints)
{
return;
}
outPoints->SetNumberOfComponents(3);
outPoints->SetNumberOfTuples(inPoints->GetNumberOfPoints());
switch (inPoints->GetDataType())
......
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