我有以下代码。
#include<stdio.h>
#include<string.h>
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
int main(){
int *N=NULL;
char *S=NULL,input[50],*Par=NULL,T='^';
printf("Give me the equation: ");
scanf("%s",input);
printf("\n%d",strlen(input));
S=(char*)malloc(3);
N=(int*)malloc((strlen(input)-3)*sizeof(int));
_CrtDumpMemoryLeaks(); /* Memory leak detected! */
free(S);
free(N);
return 0;
}
malloc返回后没有问题,带有注释的行中的函数在visual studio的输出窗口中打印下一条消息:
Detected memory leaks!
Dumping objects ->
c:\users\manos\documents\visual studio 2010\projects\gcjgcjc\gcjgcjc\gdjjj.cpp(17) : {60} normal block at 0x00A343F8, 16 bytes long.
Data: < > CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD
c:\users\manos\documents\visual studio 2010\projects\gcjgcjc\gcjgcjc\gdjjj.cpp(16) : {59} normal block at 0x00A31B30, 3 bytes long.
Data: < > CD CD CD
Object dump complete.
当程序停止时,visual会检测到堆损坏。 有谁知道会发生什么?据我所知,我的代码没有任何问题,所以malloc会发生什么?我做了一些导致内存泄漏的事情吗?
答案 0 :(得分:2)
在释放所有内存之前,不应尝试检测内存泄漏。在_CrtDumpMemoryLeaks();
之前调用free
- 您已经分配的所有内容必然会检测到错误的“泄漏”,这些泄漏只是您的程序正在使用的内存。
将支票移至最后将解决问题:
S=(char*)malloc(3);
N=(int*)malloc((strlen(input)-3)*sizeof(int));
free(S);
free(N);
_CrtDumpMemoryLeaks(); /* No memory leaks! */
您还应该将strlen(input)
的支票添加为3或更多;否则,您可以将一个负数传递给malloc
,malloc
将其解释为一个大的正数;这绝不应该发生。