0

シリアル経由でコマンドを送信し、不明なサイズの応答を受信する関数があります。使用する

(ioctl(fd_, FIONREAD, &bytes_in_buffer);

読み取りに割り当てる必要があるメモリの量を決定します。

//This code calls the function below
unsigned char CheckRefresh[] = {254, 124, 0};
unsigned char * response;
unsigned int size;
relay_board->SendCustomCommand(CheckRefresh, 3, &response, size);

ErrorCode SendCustomCommand(unsigned char * command, unsigned int command_size, unsigned char **response, unsigned int &response_size)
{
  //Send the command
  write(fd_, command, command_size);

  // ... Omitting Polling Code to Get correct number of bytes ...
  (ioctl(fd_, FIONREAD, &bytes_in_buffer);

  //Now getting the response
  response_size = (unsigned int)bytes_in_buffer;
  (*response) = new unsigned char(response_size);
  if(read(fd_, *response, response_size) < 0)
  {
    std::cout << "[ProXRSerial] SendCustomCommand: Read failed... -- Errno: " << errno << std::endl;
    return Failed;
  };
  return Success;
}

次の関数呼び出しが

unsigned char * command = new unsigned char(3);

次のように:

sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) -
__builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) 
(old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 
* (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && 
((unsigned long)old_end & pagemask) == 0)' failed.

誰かアドバイスをいただけますか?私は途方に暮れています。そのように二重ポインタを渡すと、ユーザーにメモリを割り当てることができると思いました...

前もって感謝します。

4

1 に答える 1

7

この線

(*response) = new unsigned char(response_size);

読むべき

(*response) = new unsigned char[response_size];

お使いのバージョンでは、 1 つの符号なし文字が割り当てられ、値で初期化されますresponse_size

于 2012-04-05T22:27:54.260 に答える