While running a code after building it using glibc, if you get this error :
export MALLOC_CHECK_=0
Then, try running the program. It worked in my case.
glibc detected : double free or corruption (fasttop)
To fix this error export "MALLOC_CHECK_" environment variable :
export MALLOC_CHECK_=0
Then, try running the program. It worked in my case.
Comments
Post a Comment