码迷,mamicode.com
首页 > 其他好文 > 详细

无返回值函数传入一级指针后造成的内存泄露问题

时间:2015-03-19 10:00:41      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

错误代码如下示:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void get_memory(char *p, int num)
{
  p = (char *)malloc(sizeof(char)*num);
}

int main(int argc,char *argv[])
{
  char *str = NULL;
  get_memory(str, 100);
  strcpy(str, "hello");
  printf("resut: %s\n", str);

  return 0;
}

 

linux下执行结果

$ ./tt
Segmentation fault

析:

调用函数 get_memory() 后,p将被系统释放,但由于malloc是在堆中分配的,只有当程序结束后才释放,这样将造成内存泄露。

linux下,由于函数调用后p的值变为了0x00,这样再执行strcpy时由于访问了无效地址而出现了段错误。

 

正确代码如(采用了二级指针方式)下:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void get_memory(char **p, int num)
{
  *p = (char *)malloc(sizeof(char)*num);
}

int main(int argc,char *argv[])
{
  char *str = NULL;
  get_memory(&str, 100);
  strcpy(str, "hello");
  printf("resut: %s\n", str);

  return 0;
}

执行结果如下:

$ ./tt
resut: hello

无返回值函数传入一级指针后造成的内存泄露问题

标签:

原文地址:http://www.cnblogs.com/aqing1987/p/4349553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!