- 论坛徽章:
- 0
|
我在linux下面写一个程序, 在调用free(p)的时候出现了段错误。 大概的可能原因是什么呢。
p不是空指针。
[code]int SendCns(pCns_packet_t pCns_packet, pInstSierialport_t SerialInstance)
{
int retval = 0;
whip_packet_t whip_packet;
char *dest_buf = NULL, *src_buf = pCns_packet-> arameter;
int i;
int bufsize = pCns_packet->;payloadlenth + 10;/* put Cns packet and it's payload in a memory block */
INFUNCTION;
if((dest_buf = (char *)malloc(bufsize)) == NULL){
fprintf(stderr, "unable to malloc for Cns packet memory block\n" ;
return -1;
}
printf("bufsize is %d\n", bufsize);
bzero(&whip_packet, sizeof(whip_packet));
bzero(dest_buf, bufsize);
PrintCnsPacket(pCns_packet);
dest_buf[0] = (char) ((pCns_packet->;ObjectID & 0xFF00) >;>; ;
dest_buf[1] = (char) (pCns_packet->;ObjectID & 0x00FF);
dest_buf[2] = (char) pCns_packet->;OperationType;
dest_buf[3] = (char) pCns_packet->;Reserved;
dest_buf[4] = (char) ((pCns_packet->;AppID & 0xFF000000) >;>; 24);
dest_buf[5] = (char) ((pCns_packet->;AppID & 0x00FF0000) >;>; 16);
dest_buf[6] = (char) ((pCns_packet->;AppID & 0x0000FF00) >;>; ;
dest_buf[7] = (char) ((pCns_packet->;AppID & 0x000000FF));
dest_buf[8] = (char) ((pCns_packet->;payloadlenth& 0xFF00) >;>; ;
dest_buf[9] = (char) (pCns_packet->;payloadlenth& 0x00FF);
for(i = 0; i < pCns_packet->;payloadlenth; i++){
dest_buf[i + 10] = src_buf[i];
}
whip_packet.Optionpayload = dest_buf;
whip_packet.Startframe = WHIP_FRAME;
whip_packet.payloadlenth = pCns_packet->;payloadlenth+ 10;
whip_packet.MessageID = WHIP_MSG_HOST2MODEM;
whip_packet.Parameter = WHIP_PARA_CNS_NULL;
whip_packet.Endframe = WHIP_FRAME;
retval = SendWHIP(&whip_packet, SerialInstance);
printf("whip_packet.Optionpayload: %#X, dest_buf : %#X\n", (int)whip_packet.Optionpayload, (int)dest_buf);
printf("after send whip\n" ;
printf("bufsize is %d\n", bufsize);
free(dest_buf);/* ======== segment error=======*/
printf("after free dest_buf\n" ;
if(retval < 0){
return retval;
}
EXITFUNCTION;
return 0;
}
[/code] |
|