提交 c1118eb1 编写于 作者: J Jared Parsons 提交者: GitHub

Merge pull request #12070 from tvsonar/bugfix-nullref

Bugfix: possible NRE in TypeNameSerializer extensions
......@@ -179,7 +179,7 @@ private static void AppendAssemblyQualifierIfNecessary(StringBuilder sb, ITypeRe
IManagedPointerTypeReference reference = typeReference as IManagedPointerTypeReference;
if (reference != null)
{
AppendAssemblyQualifierIfNecessary(sb, pointer.GetTargetType(context), out isAssemQualified, context);
AppendAssemblyQualifierIfNecessary(sb, reference.GetTargetType(context), out isAssemQualified, context);
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册