在编写 C 代码时,我经常使用网站 www.cplusplus.com 作为参考。
我正在阅读页面上引用的示例以获取fread并且有一个问题。
作为一个例子,他们发布:
/* fread example: read a complete file */
#include <stdio.h>
#include <stdlib.h>
int main () {
FILE * pFile;
long lSize;
char * buffer;
size_t result;
pFile = fopen ( "myfile.bin" , "rb" );
if (pFile==NULL) {fputs ("File error",stderr); exit (1);}
// obtain file size:
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);
// allocate memory to contain the whole file:
buffer = (char*) malloc (sizeof(char)*lSize);
if (buffer == NULL) {fputs ("Memory error",stderr); exit (2);}
// copy the file into the buffer:
result = fread (buffer,1,lSize,pFile);
if (result != lSize) {fputs ("Reading error",stderr); exit (3);}
/* the whole file is now loaded in the memory buffer. */
// terminate
fclose (pFile);
free (buffer);
return 0;
}
在我看来,如果结果!= lSize,那么 free(buffer) 将永远不会被调用。在这个例子中这会是内存泄漏吗?
我一直认为他们网站上的示例质量很高。也许我没有正确理解?