1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix segfault on quitting with open node formspec (#8608)

This commit is contained in:
SmallJoker 2019-06-21 21:00:30 +02:00
parent 39c54e13c3
commit 4e3c1916f7

View file

@ -306,11 +306,10 @@ void GameUI::toggleProfiler()
void GameUI::deleteFormspec() void GameUI::deleteFormspec()
{ {
if (m_formspec) if (m_formspec) {
m_formspec->quitMenu(); m_formspec->drop();
m_formspec = nullptr;
delete m_formspec; }
m_formspec = nullptr;
m_formname.clear(); m_formname.clear();
} }