<div dir="ltr"><div><br></div><div><br></div><div>Two questions:</div><div><br></div><div><br></div><div>1. I am using jemalloc-dev version and configured it as follows</div><div><br></div><div>./configure --enable-debug --enable-fill --enable-ivsalloc --disable-tcache<br></div><div><br></div><div><br></div><div>I am running following simple test case but double free is not detected, what am I missing ?</div><div><br></div><div><div><br></div><div>int main()</div><div>{</div><div> char * ptr = malloc(1024);</div><div> free(ptr);</div><div> free(ptr);</div><div> return 0;</div><div>}</div></div><div><br></div><div><br></div><div>2. Is quarantine basically a per thread free list ? How does it interact with tcache ?</div><div><br></div><div><br></div><div>Cheers.</div>
</div>