diff --git a/drape_frontend/text_layout.cpp b/drape_frontend/text_layout.cpp index 6bd0f99c24..108fcee10f 100644 --- a/drape_frontend/text_layout.cpp +++ b/drape_frontend/text_layout.cpp @@ -348,6 +348,10 @@ StraightTextLayout::StraightTextLayout(strings::UniString const & text, float fo bool forceNoWrap) { strings::UniString visibleText = bidi::log2vis(text); + // Possible if name has strange symbols only. + if (visibleText.empty()) + return; + buffer_vector delimIndexes; if (visibleText == text && !forceNoWrap) SplitText(visibleText, delimIndexes);