Merge pull request #424 from SHADE-DP/SP3-6-c-scripting
Added proper handling for loaded null managed assemblies
This commit is contained in:
commit
bc567f626f
|
@ -882,6 +882,11 @@ namespace SHADE
|
||||||
|
|
||||||
System::Collections::Generic::IEnumerable<System::Type^>^ selectorFunc(System::Reflection::Assembly^ assembly)
|
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();
|
return assembly->GetExportedTypes();
|
||||||
}
|
}
|
||||||
Pair^ resultSelectorFunc(System::Reflection::Assembly^ assembly, System::Type^ type)
|
Pair^ resultSelectorFunc(System::Reflection::Assembly^ assembly, System::Type^ type)
|
||||||
|
|
Loading…
Reference in New Issue