mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #95317 from esainane/when-i-am-64
binder_common: Fix uninitialized marshalling for `PtrToArg<char32_t>`
This commit is contained in:
@@ -214,11 +214,11 @@ struct VariantCaster<char32_t> {
|
||||
template <>
|
||||
struct PtrToArg<char32_t> {
|
||||
_FORCE_INLINE_ static char32_t convert(const void *p_ptr) {
|
||||
return char32_t(*reinterpret_cast<const int *>(p_ptr));
|
||||
return char32_t(*reinterpret_cast<const int64_t *>(p_ptr));
|
||||
}
|
||||
typedef int64_t EncodeT;
|
||||
_FORCE_INLINE_ static void encode(char32_t p_val, const void *p_ptr) {
|
||||
*(int *)p_ptr = p_val;
|
||||
*(int64_t *)p_ptr = p_val;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user