You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Fix buffer_info may be used uninitialized
This commit is contained in:
@@ -8394,6 +8394,7 @@ void RenderingDeviceVulkan::_free_internal(RID p_id) {
|
|||||||
b.allocation = index_buffer->allocation;
|
b.allocation = index_buffer->allocation;
|
||||||
b.buffer = index_buffer->buffer;
|
b.buffer = index_buffer->buffer;
|
||||||
b.size = index_buffer->size;
|
b.size = index_buffer->size;
|
||||||
|
b.buffer_info = {};
|
||||||
frames[frame].buffers_to_dispose_of.push_back(b);
|
frames[frame].buffers_to_dispose_of.push_back(b);
|
||||||
index_buffer_owner.free(p_id);
|
index_buffer_owner.free(p_id);
|
||||||
} else if (index_array_owner.owns(p_id)) {
|
} else if (index_array_owner.owns(p_id)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user