1
0
Fork 0

Merge pull request #106691 from limbonaut/fix-crash-on-exit-with-call-stacks

Fix crash on exit due to GDScriptLanguage::CallStack mismatched deallocation
This commit is contained in:
Thaddeus Crews 2025-05-22 12:15:04 -05:00
commit 290a65de1e
No known key found for this signature in database
GPG Key ID: 8C6E5FEB5FC03CCC
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ class GDScriptLanguage : public ScriptLanguage {
void free() {
if (levels) {
memdelete(levels);
memdelete_arr(levels);
levels = nullptr;
}
}