Code Bye

Android NDK用malloc分配内存,只要一使用这块内存,就报错[1] + Stopped (sign

有没有熟悉Android NDK的高手指导一下,为什么用malloc分配一块内存,只要对这块内存进行操作就报错呢?
[1] + Stopped (signal)或Segmentation fault !
本人的实验代码如下:
void main()
{
uint8_t arry[20] = “hello world\n”;
uint8_t*buffer= (uint8_t *) malloc(sizeof(uint8_t) * 100);
if(buffer = NULL){
printf(“buffer malloc erro!\n”);
return;
}
size_t len = strlen(arry) + 1;
memcpy(buffer,arry,len);
printf(“memcopy end\n”);
free(buffer);
}
解决方案

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Android NDK用malloc分配内存,只要一使用这块内存,就报错[1] + Stopped (sign