为了解释我的问题,这是极简主义的 main.cc:
#include "./main.h"
int main(int argc, char *argv[]) {
char *buffer = new char[12];
char *output = new char[12];
FILE *input = fopen("file.test", "r");
while ( read_stdin(buffer, 12, input, output) ) {
// Operations on output
// (...)
}
fclose(input);
delete[] output; output = 0;
delete[] buffer; buffer = 0;
return 0;
}
和 main.h:
#include <cstdio>
#include <cstring>
inline bool read_stdin(char *tmp_buffer, const size_t &len, FILE *input, char *&output) {
output = fgets(tmp_buffer, len, input);
if ( output != NULL ) {
char *lf = strchr(output, '\n');
if ( lf != NULL ) {
*lf = '\0';
}
return true;
}
return false;
}
函数 read_stdin() 可以从 STDIN 读取,它解释了它的名字。
好吧,一切都按预期工作,但 valgrind 告诉我这样的事情:
==6915== 12 bytes in 1 blocks are definitely lost in loss record 1 of 1
==6915== at 0x4C29527: operator new[](unsigned long) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==6915== by 0x4008A2: main (main.cc:6)
我编译为g++ -O0 -g main.cc -o test
我知道这12个字节是“输出”,但是为什么会丢失一些字节?我使用 delete[],即使 STDIN 或输入没有任何内容,输出也会为 NULL 对吗?
我误解了为什么还有这12个字节,我错在哪里?
先感谢您 :)
编辑
感谢 Vaughn Cato、Dietmar Kühl 和 Richard J. Ross III,我改变了台词:
output = fgets(tmp_buffer, len, input);
if ( output != NULL ) {
至
if ( fgets(output, len, input) != NULL ) {