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
1 changed files with 3 additions and 1 deletions

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;
}