Guard ikvm loader against null namespaces.

This commit is contained in:
Mike Krüger 2014-03-10 17:37:37 +01:00
Родитель ef6b76e60c
Коммит 72d62f692a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -143,7 +143,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
foreach (var type in assembly.ManifestModule.__GetExportedTypes ()) {
if (type.Assembly != assembly) {
int typeParameterCount;
string ns = type.Namespace;
string ns = type.Namespace ?? "";
string name = ReflectionHelper.SplitTypeParameterCountFromReflectionName(type.Name, out typeParameterCount);
ns = interningProvider.Intern(ns);
name = interningProvider.Intern(name);