Fixes crash introduced in previous commit 9cf94d5.

This commit is contained in:
omar
2018-10-12 13:29:13 +02:00
parent c398153b40
commit 2eaf5b03df
2 changed files with 6 additions and 5 deletions

View File

@ -3714,7 +3714,8 @@ bool ImGui::InputTextEx(const char* label, char* buf, int buf_size, const ImVec2
break;
if (rect_pos.y < clip_rect.y)
{
p = (const ImWchar*)wmemchr((const wchar_t*)p, '\n', text_selected_end - p) + 1;
p = (const ImWchar*)wmemchr((const wchar_t*)p, '\n', text_selected_end - p);
p = p ? p + 1 : text_selected_end;
}
else
{