InputText: size for allowed input size smaller than necessary by 1 byte.

features/sdl_renderer3_multiviewports
ocornut ago%!(EXTRA string=10 years)
parent 1eef869669
commit 9542f52182
  1. 2
      imgui.cpp

@ -5007,7 +5007,7 @@ static void STB_TEXTEDIT_DELETECHARS(STB_TEXTEDIT_STRING* obj, int pos, int n)
static bool STB_TEXTEDIT_INSERTCHARS(STB_TEXTEDIT_STRING* obj, int pos, const ImWchar* new_text, int new_text_len)
{
const size_t text_len = ImStrlenW(obj->Text);
if ((size_t)new_text_len + text_len + 1 >= obj->BufSize)
if ((size_t)new_text_len + text_len + 1 > obj->BufSize)
return false;
if (pos != (int)text_len)

Loading…
Cancel
Save