ucrtbased.dll报错涉及到基础错误

代码

   char szIndex[32] = { 0 };
   sprintf(szIndex, "%s", nIndex);//实际上应该使用%d

还有一些数组问题,可能无法直接定位到问题


运行崩溃信息如下:

0x53385FCC (ucrtbased.dll)处(位于 CMMS.exe 中)引发的异常: 0xC0000005: 读取位置 0x00000384 时发生访问冲突


 ~_Iterator_base12() _NOEXCEPT
  { // destroy the iterator
 #if _ITERATOR_DEBUG_LEVEL == 2
  _Lockit _Lock(_LOCK_DEBUG);
  _Orphan_me();
 #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
  }


ucrtbased.pdb 包含查找模块 ucrtbased.dll 的源文件所需的调试信息


尚未解决

点击工具/选择调试

1)勾选启用源服务器支持

2)符号勾选符号服务器

仍然没有下载到ucrtbased.pdb,无法调试

猜你喜欢

转载自blog.51cto.com/fengyuzaitu/2530106