mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 13:11:05 +01:00 
			
		
		
		
	Added assert to track stb_textedit.h issue (#715)
This commit is contained in:
		| @@ -7406,6 +7406,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 int text_len = obj->CurLenW; | ||||
|     IM_ASSERT(pos <= text_len); | ||||
|     if (new_text_len + text_len + 1 > obj->Text.Size) | ||||
|         return false; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user