Added proper handling for loaded null managed assemblies #424
|
@ -882,6 +882,11 @@ namespace SHADE
|
|||
|
||||
System::Collections::Generic::IEnumerable<System::Type^>^ selectorFunc(System::Reflection::Assembly^ assembly)
|
||||
{
|
||||
if (assembly == nullptr)
|
||||
{
|
||||
Debug::LogError("[ScriptStore] Received null assembly while collecting Script types. This should not happen!");
|
||||
return nullptr;
|
||||
}
|
||||
return assembly->GetExportedTypes();
|
||||
}
|
||||
Pair^ resultSelectorFunc(System::Reflection::Assembly^ assembly, System::Type^ type)
|
||||
|
|
Loading…
Reference in New Issue