is there any tools that we can use for windows platform similar to valgrind as used for linux for detect actual heap corruption like invalid read/write for win32 desktop applications. I need to find memory corruption in c++ win32 desktop code.
Asked
Active
Viewed 22 times
0
-
1For memory corruption specifically [AddressSanitizer](https://learn.microsoft.com/en-us/cpp/sanitizers/asan?view=msvc-170). – teapot418 Apr 19 '23 at 14:26
-
1address sanitizer, undefined behaviour sanitizer, thread sanitizer, memory sanitizer, clang-tidy. – Jesper Juhl Apr 19 '23 at 14:52