Imported Upstream version 6.6.0.110
Former-commit-id: c9672f5a0af86230bea096498f84f5d8396948ac
This commit is contained in:
parent
9050bbfc26
commit
76890153df
@ -1 +1 @@
|
||||
e2349164fad4ccd2424944cf6b3605ae76e1f876
|
||||
1892799cec7ada77bf0412de6037695b26342760
|
@ -1 +1 @@
|
||||
1e5e08337bc1443e8611aa9a92c9fd36e0baf00f
|
||||
70613a61062dae31e2ddc737e6095df647b9222a
|
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.6.0.108";
|
||||
public const string MonoVersion = "6.6.0.110";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -899,6 +899,40 @@ namespace MonoTests.System.Reflection.Emit
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void MethodInfoGetParametersCrash () {
|
||||
// Regression test for https://github.com/mono/mono/issues/16570
|
||||
//
|
||||
// MethodInfo.GetParameters() called on a dynamic assembly would attempt to copy the custom_name and cookie, which could be junk depending
|
||||
// on how the union is being used.
|
||||
var aName = new AssemblyName("TestAssembly");
|
||||
var testAssembly = AppDomain.CurrentDomain.DefineDynamicAssembly(aName, AssemblyBuilderAccess.RunAndSave);
|
||||
var testModule = testAssembly.DefineDynamicModule(aName.Name, aName.Name + ".dll");
|
||||
|
||||
var typeBuilder = testModule.DefineType("TestType");
|
||||
|
||||
var ctorBuilder = typeBuilder.DefineConstructor(MethodAttributes.Public, CallingConventions.Standard, Type.EmptyTypes);
|
||||
|
||||
var ctorIl = ctorBuilder.GetILGenerator();
|
||||
ctorIl.Emit(OpCodes.Ret);
|
||||
|
||||
var methodBuilder = typeBuilder.DefineMethod("TestMethod", MethodAttributes.Public, typeof(void), new[] { typeof(int[]) });
|
||||
methodBuilder.DefineParameter(0, ParameterAttributes.Retval, null);
|
||||
var paramBuilder = methodBuilder.DefineParameter(1, ParameterAttributes.None, null);
|
||||
|
||||
var attrCtor = typeof(MarshalAsAttribute).GetConstructor(new[] { typeof(UnmanagedType) });
|
||||
object[] ctorArgs = { UnmanagedType.LPArray };
|
||||
var attr = new CustomAttributeBuilder(attrCtor, ctorArgs);
|
||||
paramBuilder.SetCustomAttribute(attr);
|
||||
|
||||
var methodIl = methodBuilder.GetILGenerator();
|
||||
methodIl.Emit(OpCodes.Ret);
|
||||
|
||||
var createdType = typeBuilder.CreateType();
|
||||
|
||||
var methodInfo = createdType.GetMethod("TestMethod", BindingFlags.Instance | BindingFlags.Public);
|
||||
methodInfo.GetParameters();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1 @@
|
||||
b10ab205f4ddf7ade4f67c298be0e63e3c5f8f21
|
||||
caf320d7af68ab2292a74eaebc24abaaa73bc823
|
@ -1 +1 @@
|
||||
e3f5bd3451532718c09696f79f48473f70fa4fda
|
||||
6e8d50c11337ba8f959ec423db910c0b07ab10e8
|
@ -1 +1 @@
|
||||
3663feb80116629dcca2773e113a1deafac0bce0
|
||||
976719b6445a59f2bf752893a8f522a8bb79acd7
|
@ -1 +1 @@
|
||||
327b3da707a9b6f16d9231839094d1ca0765c5f5
|
||||
88a1a82e64083f00bace15e5a311c0b122c253dd
|
@ -1 +1 @@
|
||||
4bc82e5018b862e746408c4226aaabb48a39c7ce
|
||||
4926d847d735b80ad575ac900921accb700e8903
|
@ -1 +1 @@
|
||||
7fc65f5a9b87a7c64125074e2dcf74a3ae422bb4
|
||||
40297b60f2bc031edde89c3c6005261256e6af6c
|
@ -1 +1 @@
|
||||
50c42c6133e6f0da5d405fe88fa3fe18c494d6e7
|
||||
21d681f5d1db13f93644fc3c267c0835414019af
|
@ -1 +1 @@
|
||||
b10ab205f4ddf7ade4f67c298be0e63e3c5f8f21
|
||||
caf320d7af68ab2292a74eaebc24abaaa73bc823
|
@ -1 +1 @@
|
||||
e3f5bd3451532718c09696f79f48473f70fa4fda
|
||||
6e8d50c11337ba8f959ec423db910c0b07ab10e8
|
@ -1 +1 @@
|
||||
3663feb80116629dcca2773e113a1deafac0bce0
|
||||
976719b6445a59f2bf752893a8f522a8bb79acd7
|
@ -1 +1 @@
|
||||
327b3da707a9b6f16d9231839094d1ca0765c5f5
|
||||
88a1a82e64083f00bace15e5a311c0b122c253dd
|
@ -1 +1 @@
|
||||
4bc82e5018b862e746408c4226aaabb48a39c7ce
|
||||
4926d847d735b80ad575ac900921accb700e8903
|
@ -1 +1 @@
|
||||
7fc65f5a9b87a7c64125074e2dcf74a3ae422bb4
|
||||
40297b60f2bc031edde89c3c6005261256e6af6c
|
@ -1 +1 @@
|
||||
130318c7d2a52a90714b422cfad67998f7bb3cf7
|
||||
22403c79d060f70ba34580a710c36d91f3d7c34c
|
@ -1 +1 @@
|
||||
50c42c6133e6f0da5d405fe88fa3fe18c494d6e7
|
||||
21d681f5d1db13f93644fc3c267c0835414019af
|
@ -1 +1 @@
|
||||
b10ab205f4ddf7ade4f67c298be0e63e3c5f8f21
|
||||
caf320d7af68ab2292a74eaebc24abaaa73bc823
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user