内存泄漏:stack smashing detected ***: <unknown> terminatedAborted (core dumped)

内存泄漏问题

1 数组使用时是否初始化?

char debug[];

->

char debug[] = {0}; 

 2 数组大小是否正确 (内存越界)

char debug[2] = "this";

->

char debug[4] = "this";

你可能感兴趣的:(工作问题速记,linux,c语言,ubuntu)