- 论坛徽章:
- 0
|
程序运行,malloc时竟然出现段错误,高手帮忙分析一下原因吧.
我写的函数
void de_eventip(char *buf, EVENT_DNODE *ptr)
{
struct in_addr *q,*longip;
HEAD *head;
// q = (struct in_addr *)malloc(100 * sizeof(struct in_addr));
head = (HEAD *)buf;
printf(" the malloc size is : %d\n", sizeof(struct in_addr)*(head->count-1));
printf("de_event 1!\n");
printf("head->count -1 :%d\n",head->count-1);
// printf(" the malloc size is : %d", sizeof(struct in_addr)*(head->count-1));
printf("before malloc 1\n");
printf("before malloc 2\n");
printf("before malloc 3\n");
printf("before malloc 4\n");
printf("before malloc 5\n");
printf("before malloc 6\n");
q = (struct in_addr *)malloc(400);
printf("after malloc 1\n");
printf("after malloc 2\n");
printf("after malloc 3\n");
printf("after malloc 4\n");
printf("after malloc 5\n");
printf("after malloc 6\n");
if(q == NULL)
{
printf("return\n");
return;
}
printf("de_event 2!\n");
longip = (struct in_addr *)(buf + sizeof(HEAD) + sizeof(u_char) + sizeof(EVENT) + sizeof(u_char));
printf("de_event 3!\n");
memcpy(q, longip, sizeof(struct in_addr)*(head->count-1));
printf("de_event 4!\n");
ptr->aipinf.front = q;
ptr->aipinf.size = head->count-1;
}
这个程序可以运行一段时间,malloc都没问题,但是过一阵会提示段错误,
printf("before malloc 1\n");
printf("before malloc 2\n");
printf("before malloc 3\n");
printf("before malloc 4\n");
printf("before malloc 5\n");
printf("before malloc 6\n");
出错时,这些语句都能正常输出,但是malloc之后的语句不能输出
下面是GDB的出错信息:
the malloc size is : 4
de_event 1!
head->count -1 :1
before malloc 1
before malloc 2
before malloc 3
before malloc 4
before malloc 5
before malloc 6
Program received signal SIGSEGV, Segmentation fault.
0x42074900 in malloc_consolidate () from /lib/tls/libc.so.6
(gdb) bt
#0 0x42074900 in malloc_consolidate () from /lib/tls/libc.so.6
#1 0x420741ec in _int_malloc () from /lib/tls/libc.so.6
#2 0x4207335b in malloc () from /lib/tls/libc.so.6
#3 0x080490a8 in de_eventip (buf=0xbfffe100 "\020\001", ptr=0x8050ce0)
at event_list.c:247
#4 0x0804a192 in main (argc=4, argv=0xbfffe384) at main.c:338
#5 0x42015574 in __libc_start_main () from /lib/tls/libc.so.6
(gdb)
大家帮忙分析一下.这个函数可以执行多次都没问题.不过多次运行出现的段错误都是在malloc这里. |
|