[ugc] crash fix part 2

This commit is contained in:
Arsentiy Milchakov 2017-10-16 18:43:29 +03:00 committed by Roman Kuznetsov
parent 4bfb6c4deb
commit dc7d383777

View file

@ -356,7 +356,9 @@ unique_ptr<FeatureType> Storage::GetFeature(FeatureID const & id) const
CHECK(id.IsValid(), ());
Index::FeaturesLoaderGuard guard(m_index, id.m_mwmId);
auto feature = guard.GetOriginalOrEditedFeatureByIndex(id.m_index);
feature->ParseGeometry(0);
feature->ParseGeometry(FeatureType::BEST_GEOMETRY);
if (feature->GetFeatureType() == feature::EGeomType::GEOM_AREA)
feature->ParseTriangles(FeatureType::BEST_GEOMETRY);
CHECK(feature, ());
return feature;
}