Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PointSet::SetPoints(PointsVectorContainer *) overload leads to undefined behavior #4848

Open
N-Dekker opened this issue Sep 13, 2024 · 0 comments
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances

Comments

@N-Dekker
Copy link
Contributor

Description

PointSet::SetPoints(PointsVectorContainer * points) internally casts its argument to a PointsContainer *:

auto * pointsPtr = reinterpret_cast<PointsContainer *>(points);

This leads to undefined behavior, when the PointsVectorContainer object is being used as a PointsContainer object.

Steps to Reproduce

The test code already has undefined behavior, even if it might just work on the currently tested platforms:

// Insert the points using SetPointArray.
PointsVectorContainerPointer pointsArray = PointsVectorContainer::New();
// Test for in-compatible input array dimension
pointsArray->InsertElement(0, 1.0);
ITK_TRY_EXPECT_EXCEPTION(pset->SetPoints(pointsArray));
pointsArray->Reserve(numOfPoints * pointDimension);
int index = 0;
for (int i = 0; i < numOfPoints; ++i)
{
pointsArray->SetElement(index++, 1.0);
pointsArray->SetElement(index++, 2.0);
pointsArray->SetElement(index++, 3.0);
}
pset->SetPoints(pointsArray);
// Check the count of points after insertion using SetPoints.
pointsArrayAfter = pset->GetPoints();
if (static_cast<int>(pointsArrayAfter->Size()) != numOfPoints)
{
std::cerr << "Mismatch in count after inserting points." << std::endl;
return EXIT_FAILURE;
}

Versions

Additional Information

Discussed before at #3154 (comment), with @PranjalSahu

@N-Dekker N-Dekker added the type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances label Sep 13, 2024
N-Dekker added a commit to N-Dekker/ITK that referenced this issue Sep 17, 2024
Aims to mitigate issue InsightSoftwareConsortium#4848
"`PointSet::SetPoints(PointsVectorContainer *)` overload leads to undefined behavior"
dzenanz pushed a commit that referenced this issue Sep 20, 2024
Aims to mitigate issue #4848
"`PointSet::SetPoints(PointsVectorContainer *)` overload leads to undefined behavior"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances
Projects
None yet
Development

No branches or pull requests

1 participant