Merge pull request #64959 from raulsntos/dotnet/fix-malloc-size

C#: Fix byteCount in `NativeMemory.Alloc`
This commit is contained in:
Ignacio Roldán Etcheverry 2022-08-28 01:44:56 +02:00 committed by GitHub
commit 202f0f2f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -831,7 +831,7 @@ namespace Godot.Bridge
}
else
{
interopProperties = ((godotsharp_property_info*)NativeMemory.Alloc((nuint)length))!;
interopProperties = ((godotsharp_property_info*)NativeMemory.Alloc((nuint)length, (nuint)sizeof(godotsharp_property_info)))!;
}
try
@ -951,7 +951,7 @@ namespace Godot.Bridge
}
else
{
interopDefaultValues = ((godotsharp_property_def_val_pair*)NativeMemory.Alloc((nuint)length))!;
interopDefaultValues = ((godotsharp_property_def_val_pair*)NativeMemory.Alloc((nuint)length, (nuint)sizeof(godotsharp_property_def_val_pair)))!;
}
try