MFC:Stack around the “tWindowString” was corrupted(堆栈损坏,即内存溢出)

最近调试程序的时候出现了这样一个问题
MFC:Stack around the “tWindowString” was corrupted(堆栈损坏,即内存溢出)_第1张图片
其中关键性的内容有两个:出现error的位置和error信息。
可以看到错误位置在mytree.cpp的377行,问题原因是Run-Time Check Failure #2 - Stack around the “tWindowString” was corrupted。翻译过来就是运行时检查失败#2 - “tWindowString”周围的堆栈已损坏。所谓的堆栈损坏往往出现内存溢出了。定位到程序中去

{
	.......
    char ss[10];
    sprintf(ss, " 当前列表项数为:  %d", Listctrl.GetItemCount());
    pStatus->SetPaneText (3, ss);
}//377行,定位的是这里

程序中涉及到数组的就是ss,很明显是sprintf的时候ss越界了。通过给sprintf加上返回值
int len_ss=sprintf(ss, " 当前列表项数为: %d", Listctrl.GetItemCount());
发现len_ss=20。所以将ss的规模调大,大于20就解决这个问题了。

你可能感兴趣的:(MFC)