我的 C 代码中有一个错误“Segmentation Fault SigSegv”:
int main(void)
{
HANDLE h;
char *query = malloc(10);
h=InitPort("\\\\.\\COM2",57600);
query = 0;
query=getenv("QUERY_STRING");
if (h==INVALID_HANDLE_VALUE)
{
printf("Error\n");
return 0;
}
if (strstr(query,"COMM=W")!=0)
{
SendData(h,'W');
}
return 0;
}
我阅读了很多关于分配内存的意见,最后使用了 malloc() 函数,但它没有用。
我的代码中的所有功能:
HANDLE InitPort(char* PORT,unsigned long BAUD_RATE)
{
HANDLE h;
DCB d;
h=CreateFileA(PORT,GENERIC_READ | GENERIC_WRITE,0,0,OPEN_EXISTING,0, 0);
GetCommState(h,&d);
d.BaudRate=BAUD_RATE;
d.fBinary=1;
d.fParity=0;
d.ByteSize=8;
d.StopBits=ONESTOPBIT;
SetCommState(h,&d);
return h;
}
void SendData(HANDLE h,unsigned char byte)
{
unsigned long n;
WriteFile(h,&byte,1,&n,NULL);
}
和 *char 查询;查询=(char)malloc(sizeof(char) 10); 也没有用