diff --git a/storage/country_info.cpp b/storage/country_info.cpp index bb5e2c2722..b0b99d292c 100644 --- a/storage/country_info.cpp +++ b/storage/country_info.cpp @@ -98,7 +98,10 @@ namespace storage void CountryInfoGetter::GetRegionInfo(string const & id, CountryInfo & info) const { map::const_iterator i = m_id2info.find(id); - ASSERT ( i != m_id2info.end(), () ); + + // Take into account 'minsk-pass'. + if (i == m_id2info.end()) return; + //ASSERT ( i != m_id2info.end(), () ); info = i->second;