Skip to content
Prev 60624 / 63424 Next

calloc() vs. R_Calloc()

Adrian,

there are many more allocations in your code - for example, you're using resize() from utils.c which uses malloc/free so it will break since it's using the wrong allocator. You may need to replace *all* allocations in your project, not just some.

Cheers,
Simon