forked from organicmaps/organicmaps
Fixed crash by VB/IB overflow in text rendering
This commit is contained in:
parent
ceace2c4ac
commit
74ed493441
1 changed files with 5 additions and 0 deletions
|
@ -227,6 +227,11 @@ void CaptionDescription::Init(FeatureType const & f,
|
|||
else
|
||||
f.GetReadableName(true /* allowTranslit */, deviceLang, m_mainText);
|
||||
|
||||
// Set max text size to avoid VB/IB overflow in rendering.
|
||||
size_t constexpr kMaxTextSize = 200;
|
||||
if (m_mainText.size() > kMaxTextSize)
|
||||
m_mainText = m_mainText.substr(0, kMaxTextSize) + "...";
|
||||
|
||||
m_roadNumber = f.GetRoadNumber();
|
||||
m_houseNumber = f.GetHouseNumber();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue