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

Fix out of bound access of trajectory points #290

Open
wants to merge 1 commit into
base: melodic-devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions industrial_trajectory_filters/src/uniform_sample_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ template<typename T>

trajectory_out = trajectory_in;

if(size_in <= 1)
{
ROS_WARN("A minimal trajectory of 2 points is required to apply a uniform sampling filter");
return false;
}

// Clear out the trajectory points
trajectory_out.request.trajectory.points.clear();

Expand Down