Hi everyone,
I write a program, when it run over, dds shows that
[D0108|DELETE_CONTAINED]RTIOsapiHeap_freeBufferAligned:inconsistent free/alloc:block id 0x4e8d360 being freed with "RTIOsapiHeap_freeBufferAligned" and was allocated with "RTIOsapiHeap_unknownFunction"
what's the problem about?
Hi,
Can you share the code that is causing that? It looks like something is deleting a buffer being with a method that is incompatible with the method that was used to allocate it. Something similar to what happens when you call
free()
on an object allocated withnew()
.Thanks,
Fernando.