linux中gdb调试出现buffer overflow detected,program terminated with signal SIGABRT Aborted

strcpy(str1,str2);或memcpy(p1,p2,size)极易出错

一定要确保str1,p1已经申请缓存,且缓存空间充足。

本次出错地方为:linux下文件地址较长,str1只申请了40个字节不够用,出现(buffer overflow detected)错误,在此谨记

你可能感兴趣的:(工具)