LuaMemorySnapshotDump
LuaMemorySnapshotDump copied to clipboard
MemoryReferenceInfo.lua:261: attempt to concatenate 'string' and 'struct 178 *'
Hello,
While trying to use your tool, I was getting the following error:
MemoryReferenceInfo.lua:261: attempt to concatenate 'string' and 'struct 178 *'
and sometimes
MemoryReferenceInfo.lua:261: attempt to concatenate 'string' and 'void *'
I fixed it by changing this line #261 from:
CollectObjectReferenceInMemory(strName .. "." .. k, v, cDumpInfoContainer)
to
CollectObjectReferenceInMemory(strName .. "." .. type(k), v, cDumpInfoContainer)