From aab28bc72ec3baf1ffb7588dd93375cb6604fcba Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Fri, 31 Jan 2020 16:27:50 +0300 Subject: [PATCH] [Routing] Fix for followed_polyline. --- routing/base/followed_polyline.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index 7308c557c3..cadcbe452e 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -139,7 +139,8 @@ Iter FollowedPolyline::GetBestMatchingProjection(m2::RectD const & posRect) cons // At first trying to find a projection to two closest route segments of route which is close // enough to |posRect| center. If |m_current| is right before intermediate point we can get |iter| // right after intermediate point (in next subroute). - size_t const hoppingBorderIdx = min(m_segProj.size(), m_current.m_ind + 3); + size_t const hoppingBorderIdx = + min(m_nextCheckpointIndex, min(m_segProj.size(), m_current.m_ind + 3)); auto const iter = GetClosestMatchingProjectionInInterval(posRect, m_current.m_ind, hoppingBorderIdx); if (iter.IsValid()) return iter;