printf上的C ++客户端/服务器应用程序上的分段错误

时间:2017-01-13 20:14:43

标签: c++ printf client-server

我正在尝试从客户端读取用户名/密码并将其传输到服务器。我也在尝试动态分配字符串(我不太了解它,试图学习它),我很确定存在问题。在最后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上遇到了分段错误(核心转储)。

2 个答案:

答案 0 :(得分:1)

您的Usercl和Passcl已经是指针。删除&#39;&amp;&#39;在他们的两个阅读电话上。

答案 1 :(得分:0)

我修好了。我做了你告诉我的一切,现在它奏效了。谢谢!