mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Fix unchecked access to command buffer.
In the example application, clicking on the Combo list under Widgets will cause an assert. This commit checks if the command buffer is empty before attempting to access it.
This commit is contained in:
parent
9a426faf4f
commit
eaef343d01
1 changed files with 8 additions and 4 deletions
12
imgui.cpp
12
imgui.cpp
|
@ -4660,10 +4660,14 @@ void ImDrawList::ReserveVertices(unsigned int vtx_count)
|
|||
{
|
||||
if (vtx_count > 0)
|
||||
{
|
||||
ImDrawCmd& draw_cmd = commands.back();
|
||||
draw_cmd.vtx_count += vtx_count;
|
||||
vtx_buffer.resize(vtx_buffer.size() + vtx_count);
|
||||
vtx_write = &vtx_buffer[vtx_buffer.size() - vtx_count];
|
||||
if (!commands.empty())
|
||||
{
|
||||
ImDrawCmd& draw_cmd = commands.back();
|
||||
draw_cmd.vtx_count += vtx_count;
|
||||
}
|
||||
|
||||
vtx_buffer.resize(vtx_buffer.size() + vtx_count);
|
||||
vtx_write = &vtx_buffer[vtx_buffer.size() - vtx_count];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue