当前位置: 代码迷 >> 综合 >> *** stack smashing detected ***: ./braodcast_udp terminated
  详细解决方案

*** stack smashing detected ***: ./braodcast_udp terminated

热度:14   发布时间:2023-12-13 12:25:43.0

编译源程序通过,运行时出错:

*** stack smashing detected ***: ./braodcast_udp terminated

堆栈溢出检测* * * / braodcast_udp终止


这是定义的缓冲区不足。

char my_ip[12];

strcpy(my_ip,inet_ntoa(user_addr.sin_addr));


是不可以的,

char my_ip[13];

strcpy(my_ip,inet_ntoa(user_addr.sin_addr));

可行

  相关解决方案