我正在尝试从客户端读取用户名/密码,并将其传输到服务器。我也在尝试动态分配字符串(我不太了解它,试图学习它),我很确定这是有问题的。在最后2个printf上,我遇到了分段错误(核心已转储)。

int nrbytes;
char *Usercl,*Passcl;
if( read (tdl.cl, &nrbytes, sizeof(int)) <= 0 )
{
    printf("[server]Thread - %d\n",tdl.idThread);
    perror("Read() error\n ");
}

Usercl = new char[nrbytes+1];
if( read (tdl.cl, &Usercl, sizeof(nrbytes)) <= 0 )
{
    printf("[server]Thread - %d\n",tdl.idThread);
    perror("Read() error\n ");
}

if( read (tdl.cl, &nrbytes, sizeof(int)) <= 0 )
{
    printf("[server]Thread - %d\n",tdl.idThread);
    perror("Read() error\n ");
}
Passcl = new char[nrbytes+1];
if( read (tdl.cl, &Passcl, sizeof(nrbytes)) <= 0 )
{
    printf("[server]Thread - %d\n",tdl.idThread);
    perror("Read() error\n ");
}
printf("[server]Thread - %d\n. User:%s\n",tdl.idThread,Usercl);
printf("[server]Thread - %d\n. Pass:%s\n",tdl.idThread,Passcl);


我在最后2个printf上遇到了分段错误(核心已转储)。

最佳答案

您的Usercl和Passcl已经是指针。删除两个通话中的“&”。

10-01 02:33