在致电:
时面对“内存故障”extern void *memcpy (void *__restrict __dest,
__const void *__restrict __src, size_t __n)
__THROW __nonnull ((1, 2));
这是一段代码:
fprintf(stderr, "sysconfig line 440 \n");
fprintf(stderr, "Value size: %d ; Pointer mymsg: %p ; Pointer value: %p ; mymsg->mtext: %s ; value: %s ; size: %d ; \n", strlen(value), mymsg, value, mymsg->mtext, value, size);
memcpy(mymsg->mtext, value, size);
fprintf(stderr, "sysconfig line 442 \n");
mymsg是指向struct的指针:
MSG_T *mymsg;
MSG_T:
typedef struct msgInfo {
int cmd;
int arg1;
int arg2;
char mtext[MAX_SEND_SIZE];
} MSG_T;
MAX_SEND_SIZE = 4096
,value是一个(void *)char *字符串,包含“”(\ 0或空链)和size = 4096,所以我不明白为什么我会出现内存故障。我检查没有内存重叠。
这是执行的输出:
sysconfig line 440
Value size: 0 ; Pointer mymsg: 0x7fd49ac4 ; Pointer value: 0x7fd4ab4c ; mymsg->mtext: ; value: ; size: 4096 ;
Memory fault
我还没有找到什么样的条件可以导致分段,因为所有内存都已经分配好,值是一个空字符串,并且没有内存重叠。
我有时只会出现内存故障(似乎是随机出现的),有时候进程会执行并退出而没有错误。
答案 0 :(得分:5)
memcpy(mymsg-> mtext,value,size);
value
是一个长度为0
的字符串,您尝试从此字符串中复制4096
个字节。因此,您正在访问4095
未分配的字节,这意味着您正在调用未定义的行为。
答案 1 :(得分:0)
您提到该值是包含“”的(void *)char *字符串。但memcpy的大小参数是4096,这就是问题。