Description
Godot version
custom
System information
Windows 10 Visual Studio 2019
Issue description
for R
is godot::Error
, a 4-byte enum:
template <class R, class... Args>
R _call_native_mb_ret(const GDNativeMethodBindPtr mb, void *instance, const Args &...args) {
R ret;
std::array<const GDNativeTypePtr, sizeof...(Args)> mb_args = { { (const GDNativeTypePtr)args... } };
internal::gdn_interface->object_method_bind_ptrcall(mb, instance, mb_args.data(), &ret);
return ret;
}
before object_method_bind_ptrcall:
after object_method_bind_ptrcall:
It has written 8 bytes and triggered stack guard detection in Visual Studio. I believe this is real and it may be caused by VARIANT_ENUM_CAST assuming all enum
are int64_t
and thus overwriting the 4-byte stack variable on encode
. reduz would probably know instantly if this is a real issue.
If it becomes relevant, I can try to reproduce this with an official build, but it is hard to do right now because of problems in GDExtension that require me to run various patches. In any case this would be confirmed and fixed by inspection if it is previously unknown.
Steps to reproduce
Debugging extensions code, and by inspection.
Minimal reproduction project
No response