免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2810 | 回复: 2
打印 上一主题 下一主题

[C] 两次调用free不报错? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-02-03 23:19 |只看该作者 |倒序浏览
各位高手,小弟在fedora10上用gcc (GCC) 4.3.2 20081105 (Red Hat 4.3.2-7)编译运行以下程序时,
两次调用free程序正常终止了,那位大侠帮忙解答一下啊。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct _link
{
        int src;
        int dst;
        int type;
}link;

typedef struct _node
{
        int idx;
        int type;
        link *link_list;
}node;


int main(void)
{
       
        link *link_p = malloc(sizeof(link));
        memset(link_p, 0, sizeof(link));
        link_p->src = 1;
        link_p->dst = 2;

        node * node_p = (node *)malloc(sizeof(node));       
        memset(node_p, 0, sizeof(node));
        node_p->idx = 1;
        node_p->link_list = link_p;
       
        printf("node idx: %d\n", node_p->idx);
        printf("link dst: %d\n", link_p->dst);


        node *node2_p = malloc(sizeof(node));
        memset(node2_p, 0, sizeof(node));
        memcpy(node2_p, node_p, sizeof(node));

        //comment 1
        //free(link_p);
        //link_p = NULL;

        free(node2_p->link_list);
        node2_p->link_list = NULL;
        free(node2_p);
        node2_p = NULL;

        free(node_p->link_list);
        node_p->link_list = NULL;
        free(node_p);
        node_p = NULL;

        //comment 2
        //free(link_p);
        //link_p = NULL;

        printf("free success\n");

        return 0;
}

注:我只把comment 2注释掉的两句放开后,程序也是正常的。
但是只把comment 1注释的两句放开后,程序便报下面的错误:
double free or corruption 。

请问:为什么把comment 1那两句注释掉后程序就可以正常运行呢?不是应该报“double free or corruption ”这样的错误吗?

论坛徽章:
0
2 [报告]
发表于 2013-02-04 09:36 |只看该作者
和malloc/free的实现有关系, 系统也可以支持一定的容错,具体可以去看一下手册.

论坛徽章:
0
3 [报告]
发表于 2013-02-04 20:57 |只看该作者
回复 2# ailure
多谢,我再找下资料。

   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP