我在編寫C代碼時經常使用網站www.cplusplus.com作爲參考。fread C++參考示例
我正在閱讀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所,然後免費(緩衝區)將永遠不會被調用!在這個例子中,這會是內存泄漏嗎?
我一直認爲他們網站上的例子質量很高。也許我不是很正確的理解?