Skip to content
Snippets Groups Projects
Commit a31182f9 authored by Christopher Steward's avatar Christopher Steward
Browse files

Fix Double Free

Fixed a double free error in constructor of new class
parent 06c2cc6d
No related merge requests found
......@@ -40,14 +40,6 @@ vtkAnisotropicLandmarkTransform::vtkAnisotropicLandmarkTransform()
//----------------------------------------------------------------------------
vtkAnisotropicLandmarkTransform::~vtkAnisotropicLandmarkTransform()
{
if(this->SourceLandmarks)
{
this->SourceLandmarks->Delete();
}
if(this->TargetLandmarks)
{
this->TargetLandmarks->Delete();
}
if(this->RotationMatrix) {
this->RotationMatrix->Delete();
}
......
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