We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e71343b + 32ff312 commit 6774cefCopy full SHA for 6774cef
mono/metadata/icall.c
@@ -1878,6 +1878,10 @@ ves_icall_System_Reflection_MonoMethodInfo_get_parameter_info (MonoMethod *metho
1878
MonoClass *klass = NULL;
1879
if (!MONO_HANDLE_IS_NULL (reftype))
1880
klass = mono_class_from_mono_type (MONO_HANDLE_GETVAL (reftype, type));
1881
+
1882
+ /* UNITY: handle wrapper methods leaking into call stacks. case 1073634 */
1883
+ method = mono_marshal_method_from_wrapper (method);
1884
1885
return mono_param_get_objects_internal (domain, method, klass, error);
1886
}
1887
0 commit comments