mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 22:32:57 +02:00
Fix unique_ptr new[]/delete mismatch
This is likely a crash fix
This commit is contained in:
parent
6313bc5295
commit
0a2d733c39
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ graphics::MeshPointer Mesh::map(std::function<glm::vec3(glm::vec3)> vertexFunc,
|
|||
gpu::BufferView::Index numVertices = (gpu::BufferView::Index)getNumVertices();
|
||||
|
||||
gpu::Resource::Size vertexSize = numVertices * sizeof(glm::vec3);
|
||||
std::unique_ptr<unsigned char> resultVertexData{ new unsigned char[vertexSize] };
|
||||
std::unique_ptr<unsigned char[]> resultVertexData{ new unsigned char[vertexSize] };
|
||||
unsigned char* vertexDataCursor = resultVertexData.get();
|
||||
|
||||
for (gpu::BufferView::Index i = 0; i < numVertices; i++) {
|
||||
|
|
Loading…
Reference in a new issue