I’m looking for something in Windows that can be used like valgrind/memcheck on Linux for C/C++.
On Linux, whenever I had a weird memory behaviour, I lanched the program with valgrind and it could tell me where in the code there was a bad read/write in memory.
I’m today in Windows + Visual Studio, It seems I have some corruption in the heap but I have no idea how to debug it. Is there a Visual Studio plugin easy to use that could do the job? Or something easy to use from jetbrains? I only found things complicated to use (windb/gflags.exe
?) which I have tried and was defeated.
I tried windb/gflags.exe
, but it doesnt seem to be connected to visual studio.
2