0

ここのコード ブロックは、_read 関数が呼び出されるまで問題なく実行されます。その後、理由もなくファイル ハンドル変数 'fh' の値が変更されます。

    std::string& xLogFile;
    std::string& xBuffer;
    struct _stat& xStatBuffer)

char *buffer;
buffer = (char *)malloc(sizeof(char) * xStatBuffer.st_size);
#define _O_RDONLY       0x0000  /* open for reading only */

int fh = 0, read_bytes =0;
fh = _open(xLogFile.c_str(), _O_RDONLY);  // ToDo function deprecated should be changed to fstream

if (fh ==1)
{
    if (mWriteLog) IntPkgUtil::TraceLog("Error!! Couldn't open the log file");
    return true;
}

read_bytes = _read(fh,&buffer,xStatBuffer.st_size);

_close(fh);
if (read_bytes <= 0)
{
    if (mWriteLog) IntPkgUtil::TraceLog("Error!! Couldn't read the log file");
    return true;
}
buffer[read_bytes] = '\0';
xBuffer = buffer;

これは、ファイルからバッファーに読み取るために使用しているコードのブロックですが、関数の呼び出し後にファイルハンドル 'fh' の値が変更される _read 関数で失敗しています。

4

1 に答える 1

1

&buffer ではなく buffer のようにコードを修正します。スタックを上書きしています。

read_bytes = _read(fh,buffer,xStatBuffer.st_size);
于 2013-09-12T07:10:20.490 に答える