将值分配给无符号整数时的运行时错误

时间:2011-01-27 23:01:50

标签: c++ crash runtime integer

我刚遇到一个非常特殊的问题。当我尝试将值赋给特定的unsigned int变量(其他无符号int变量没有问题)时,无论是使用memcpy还是使用=运算符,程序都会因运行时错误而崩溃。一个程序运行并不总是会发生,但是当我运行第二个实例时它总是这样。我通过评论不同的东西彻底检查了代码,所以我很确定值赋值是问题。

非常感谢提前。

DWORD WINAPI RecvFunc(void* lpParameter)
{
  BYTE header[5];
  short size, datasize; // must be unsigned, changed to signed for testing
  int num;
  BYTE* data;
  BYTE opcode;

  while(true)
  {
    size = 0;

    while(size < 5)
    {
      num = recv(sock, (char*)(header + size), 5 - size, 0);

      if(num <= 0)
      {
        size = 0;
        break;
      }

      //MessageBox(g_hwnd, "Header piece ok", "", MB_OK);
      size += num;
    }

    if(size == 0)
    {
      //MessageBox(g_hwnd, "Header error", "", MB_OK);
      continue;
    }

    opcode = header[0];
    memcpy(&datasize, header + 1, sizeof(datasize));

    if(datasize > 5)
    {
      data = new BYTE[datasize - 5];
    }else{
      data = NULL;
    }

    while(size < datasize)
    {
      num = recv(sock, (char*)(data + size - 5), datasize - size, 0);

      //MessageBox(g_hwnd, "Packet post-recv", "", MB_OK);

      if(num <= 0)
      {
        size = 0;
        break;
      }

      size += num;
    }

    if(size == 0)
    {
      //MessageBox(g_hwnd, "Packet error", "", MB_OK);
      delete[] data;
      continue;
    }

    size -= 5;

    //MessageBox(g_hwnd, "Received a command", "New cmd", MB_OK);

    switch(opcode)
    {
       ...
    }

    if(data != NULL)
    {
      delete[] data;
    }
  }
}

1 个答案:

答案 0 :(得分:0)

分配给unsigned int变量不是问题的真正原因,我可以向你保证:)很可能,你的程序中的其他地方有缓冲区溢出。