mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
destructor call order is important here
This commit is contained in:
parent
66d908f39b
commit
d8e9b1b35d
1 changed files with 4 additions and 0 deletions
4
ast.cpp
4
ast.cpp
|
@ -946,6 +946,10 @@ ast_function::~ast_function()
|
|||
ast_unref(m_fixedparams);
|
||||
if (m_return_value)
|
||||
ast_unref(m_return_value);
|
||||
|
||||
// force this to be cleared before m_varargs/m_argc as blocks might
|
||||
// try to access them via ast_unref()
|
||||
m_blocks.clear();
|
||||
}
|
||||
|
||||
const char* ast_function::makeLabel(const char *prefix)
|
||||
|
|
Loading…
Reference in a new issue