[GDNative] fix editor crash with NativeScript
This commit is contained in:
parent
6a4521da2a
commit
567d20fe5f
|
@ -835,12 +835,14 @@ NativeScriptLanguage::~NativeScriptLanguage() {
|
|||
|
||||
for (Map<String, Ref<GDNative> >::Element *L = NSL->library_gdnatives.front(); L; L = L->next()) {
|
||||
|
||||
L->get()->terminate();
|
||||
NSL->library_classes.clear();
|
||||
NSL->library_gdnatives.clear();
|
||||
NSL->library_script_users.clear();
|
||||
if (L->get().is_valid())
|
||||
L->get()->terminate();
|
||||
}
|
||||
|
||||
NSL->library_classes.clear();
|
||||
NSL->library_gdnatives.clear();
|
||||
NSL->library_script_users.clear();
|
||||
|
||||
#ifndef NO_THREADS
|
||||
memdelete(mutex);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue