mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
InputText: size for allowed input size smaller than necessary by 1 byte.
This commit is contained in:
parent
1eef869669
commit
9542f52182
@ -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…
Reference in New Issue
Block a user