调试异常: Free Heap block xxxxxxxx modified at xxxxxxxx after it was freed 解决方案

调试异常: Free Heap block xxxxxxxx modified at xxxxxxxx after it was freed 解决方案

一、到https://developer.microsoft.com/zh-cn/windows/downloads/windows-10-sdk/下载 Windows 10 SDK

二、cmd命令行到安装目录,开启gflags: gflags -p /enable ***.exe /full。 “***.exe”为需要调试的进程名,不需要绝对路径。

三、再调试程序,这时异常时就会跳到你苦苦寻觅的地方了。

四、不需要gflags时,命令行:gflags -p /disable ***.exe。

OK,完成。

你可能感兴趣的:(C/C++,c++)