-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide ALC name in DispatchProxy for proxies in custom ALC #92385
Conversation
Tagging subscribers to this area: @dotnet/area-system-reflection Issue DetailsFixes #82969
|
@@ -86,7 +86,6 @@ public void Ctor_String_Public_Key(string name, string expectedName) | |||
[InlineData("", typeof(ArgumentException))] | |||
[InlineData("\0", typeof(ArgumentException))] | |||
[InlineData("\0a", typeof(ArgumentException))] | |||
[InlineData("/a", typeof(FileLoadException))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests should be replaced by positive tests
src/coreclr/vm/assembly.cpp
Outdated
|| u16_strchr(pAssemblyNameParts->_pName, '\\') != NULL | ||
|| u16_strchr(pAssemblyNameParts->_pName, ':') != NULL | ||
|| u16_strchr(pAssemblyNameParts->_pName, '/') != NULL) | ||
if (COMCharacter::nativeIsWhiteSpace(pAssemblyNameParts->_pName[0])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete this check as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Fixes #82969