1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Detects crash-related marshalling errors due to NAN values

This commit is contained in:
Bernhard Liebl
2018-01-24 19:24:18 +01:00
parent fa569210f5
commit eb1f9375ea

View File

@@ -1211,7 +1211,9 @@ Error encode_variant(const Variant &p_variant, uint8_t *r_buffer, int &r_len, bo
r_len += len;
if (buf)
buf += len;
encode_variant(d[E->get()], buf, len, p_object_as_id);
Variant *v = d.getptr(E->get());
ERR_FAIL_COND_V(!v, ERR_BUG);
encode_variant(*v, buf, len, p_object_as_id);
ERR_FAIL_COND_V(len % 4, ERR_BUG);
r_len += len;
if (buf)