Skip to content
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

[mono] Fix second pass of MarshallingPInvokeScanner with metadata-free DLLs #89555

Merged
merged 2 commits into from
Jul 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ private void ResolveInconclusiveTypes(HashSet<string> incompatible, string assyP

using FileStream file = new FileStream(assyPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
using PEReader peReader = new PEReader(file);
if (!peReader.HasMetadata)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: May be good to encapsulate this, so we don't forget to check peReader.HasMetadata each time it is created, but I think it is nice to have.

return; // Just return. There are no metadata in the DLL to help us with remaining types.

MetadataReader mdtReader = peReader.GetMetadataReader();

SignatureDecoder<Compatibility, object> decoder = new(mmtcp, mdtReader, null!);
Expand All @@ -107,9 +110,8 @@ private bool IsAssemblyIncompatible(string assyPath, MinimalMarshalingTypeCompat
using FileStream file = new FileStream(assyPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
using PEReader peReader = new PEReader(file);
if (!peReader.HasMetadata)
{
return false;
}
return false; // No types in this DLL means no incompatible marshaling constructs.

MetadataReader mdtReader = peReader.GetMetadataReader();

foreach(CustomAttributeHandle attrHandle in mdtReader.CustomAttributes)
Expand Down