mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-19 05:43:21 +00:00
bff864818f
Passing an element reference of a vector to a push_back call to that same vector can cause an access after free. This is because push_back will resize the vector, reallocating if necessary, leaving the reference referring to the freed memory. Removed an instance of this usage here.