次のような tarfile を読み込んでいます。
fh = fopen(filename, "r");
if (fh == NULL) {
printf("Unable to open %s.\n", filename);
printf("Exiting.\n");
return 1;
}
fseek(fh, 0L, SEEK_END);
filesize = ftell(fh);
fseek(fh, 0L, SEEK_SET);
filecontents = (char*)malloc(filesize + 1); // +1 for null terminator
byteCount = fread(filecontents, filesize, 1, fh);
filecontents[filesize] = 0;
fclose(fh);
if (byteCount != filesize) {
printf("Error reading %s.\n", filename);
printf("Expected filesize: %ld bytes.\n", filesize);
printf("Bytes read: %d bytes.\n", byteCount);
}
次に、tarfile の内容をデコードし、そこに格納されているファイルを抽出します。すべてが正しく機能し、ファイルは問題なく抽出されますが、代わりにfread()
返されます。私が得る出力は次のとおりです。1
filesize
Error reading readme.tar.
Expected filesize: 10240 bytes.
Bytes read: 1 bytes.
のCPP リファレンスにfread
よると、戻り値は読み取られたバイト数である必要があります。