1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-12 02:00:58 +01:00

ImVector: Tweaked reserve() flow to avoid calling MemFree(NULL) which is unnecessary. (#1796)

This commit is contained in:
Kirill Artemov 2018-05-05 04:24:27 +03:00 committed by omar
parent 19544629be
commit 721ca97d95

View File

@ -1235,8 +1235,10 @@ public:
return;
value_type* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(value_type));
if (Data)
{
memcpy(new_data, Data, (size_t)Size * sizeof(value_type));
ImGui::MemFree(Data);
ImGui::MemFree(Data);
}
Data = new_data;
Capacity = new_capacity;
}