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

CreateGCHandle throws when attempting to access a Il2CppSystem.Nullable that is null #182

Open
NathanKell opened this issue Sep 30, 2024 · 0 comments

Comments

@NathanKell
Copy link

On the native side, null nullables are genuinely null (reference type pointing at IntPtr.Zero). However, it appears that per the test here

if (type.GetConstructor(new[] { typeof(IntPtr) }) is { } pointerConstructor)
in InitializeStore, they do not have a pointer-based constructor. That branches to the case where CreateGCHandle runs. However, when it runs, it finds the ptr to be IntPtr.Zero, and thus throws.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant