-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Provide ALC name in DispatchProxy for proxies in custom ALC #92385
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
Conversation
|
Tagging subscribers to this area: @dotnet/area-system-reflection Issue DetailsFixes #82969
|
| [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?
jkotas
left a comment
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