我正在从一个二进制文件中读取内容。如果我以char的形式读入数据元素,我不会得到任何malloc错误,但如果我以任何其他数据类型(如short或int)读入,程序会成功读入字节,但当我释放指针时,我会得到这可能是由于堆损坏 代码:#include <stdio.h>
#include <stdlib.h>
#define TYPE int //char or short
int main () {
FILE * pFile;
long lSize;
TYPE * buffer;
size_t result;
pFile = fopen ( "4.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 = (TYPE*) malloc (lSize/sizeof(TYPE));
if (buffer == NULL) {fputs ("Memory error",stderr); exit (2);}
// copy the file into the buffer:
result = fread (buffer,sizeof(TYPE),lSize/sizeof(TYPE),pFile);
if (result != lSize/sizeof(TYPE)) {fputs ("Reading error",stderr); exit (3);}
perror("This is the problem: ");
/* the whole file is now loaded in the memory buffer. */
// terminate
fclose (pFile);
free (buffer); // free causes heap related issue
return 0;
}
malloc
以字节为单位的大小作为参数,因此行
buffer = (TYPE*) malloc (lSize/sizeof(TYPE));
应读取
buffer = (TYPE*) malloc (lSize);