forked from organicmaps/organicmaps
Merge pull request #5338 from rokuz/fixed-ub-rendering
Fixed UB in rendering of road shields
This commit is contained in:
commit
ff528b073e
1 changed files with 1 additions and 1 deletions
|
@ -907,7 +907,7 @@ void ApplyLineFeature::Finish(std::vector<ftypes::RoadShield> && roadShields)
|
|||
uint32_t constexpr kDefaultMinDistance = 50;
|
||||
float const mainScale = df::VisualParams::Instance().GetVisualScale();
|
||||
|
||||
m2::PointD shieldOffset;
|
||||
m2::PointD shieldOffset(0.0, 0.0);
|
||||
for (size_t shieldIndex = 0; shieldIndex < roadShields.size(); shieldIndex++)
|
||||
{
|
||||
ftypes::RoadShield const & shield = roadShields[shieldIndex];
|
||||
|
|
Loading…
Add table
Reference in a new issue