We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2cd2b5 commit 0c93fa0Copy full SHA for 0c93fa0
1 file changed
src/xrCore/xrsharedmem.cpp
@@ -61,7 +61,7 @@ smem_value* smem_container::dock(u32 dwCRC, u32 dwLength, void* ptr)
61
// if not found - create new entry
62
if (0 == result)
63
{
64
- result = (smem_value*)Memory.mem_alloc(4 * sizeof(u32) + dwLength);
+ result = (smem_value*)xr_malloc(4 * sizeof(u32) + dwLength);
65
result->dwReference = 0;
66
result->dwCRC = dwCRC;
67
result->dwLength = dwLength;
0 commit comments