You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ImGuiWindow::~ImGuiWindow()
{
IM_ASSERT(DrawList == &DrawListInst);
IM_DELETE(Name);
**for (int i = 0; i != ColumnsStorage.Size; i++)**
ColumnsStorage[i].~ImGuiOldColumns();
}
the reference to ColumnsStorage goes to null and the code is not checking for null states at that point. ImGui 1.8.4 (we have 1.8.3) already fixes this issue changing the implementation of ColumnsStorage.
This problem is related to:
brown-ccv/VR-Volumeviewer#48
The text was updated successfully, but these errors were encountered: