forked from Mirrorlandia_minetest/minetest
Fix segfault on quitting with open node formspec (#8608)
This commit is contained in:
parent
39c54e13c3
commit
4e3c1916f7
@ -306,11 +306,10 @@ void GameUI::toggleProfiler()
|
||||
|
||||
void GameUI::deleteFormspec()
|
||||
{
|
||||
if (m_formspec)
|
||||
m_formspec->quitMenu();
|
||||
|
||||
delete m_formspec;
|
||||
if (m_formspec) {
|
||||
m_formspec->drop();
|
||||
m_formspec = nullptr;
|
||||
}
|
||||
|
||||
m_formname.clear();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user