Fixes #47607 (forgotten statement in GDNative cleanup)

Co-authored-by: geekrelief <geekrelief@gmail.com>
This commit is contained in:
Jan Haller 2021-04-04 15:53:10 +02:00
parent 29c7319f60
commit 0fe851da23

View File

@ -1759,6 +1759,8 @@ void NativeScriptLanguage::unregister_script(NativeScript *script) {
C->get().destroy_func.free_func(C->get().destroy_func.method_data); C->get().destroy_func.free_func(C->get().destroy_func.method_data);
} }
} }
library_classes.erase(script->lib_path);
} }
Map<String, Ref<GDNative>>::Element *G = library_gdnatives.find(script->lib_path); Map<String, Ref<GDNative>>::Element *G = library_gdnatives.find(script->lib_path);