免费注册 查看新帖 |

Chinaunix

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

[C] if 整形判断,报错 “ Memory map: ” 应该怎么解决。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-12-05 16:26 |只看该作者 |倒序浏览
本帖最后由 p0w3r 于 2015-12-05 16:32 编辑

代码如下 ,   

导致出错的条件:

1、 “fail_count” 不存在 ---> 创建文件 ----> 出错 .

2、 “fail_count” 存在 ---> 文件内值为0 ----> 出错 .

3、 "fail_count" 存在 ---> 文件内值不为0 ----> 正常运行 ---> 文件内值重置为 0 ----> 退出 .

4、 在第三的基础下再次执行程序 , 文件内值为0 ----> 出错
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>


  4. #define RESET_MODULE        2
  5. #define RESET_SYSTEM        4
  6. #define FAIL_PATH        "/tmp/fail_count"

  7. static int existFile(const char * PATH);
  8. void reset_init(void);
  9. void unsuccess_add(void);

  10. int main(void) {
  11.         reset_init();
  12.         // for (int i = 0; i < RESET_SYSTEM; ++i)
  13.         // {
  14.         //         unsuccess_add();
  15.         // }
  16. }

  17. void unsuccess_add() {
  18.         FILE *file;
  19.         int i;
  20.         file = fopen(FAIL_PATH, "r");
  21.         fscanf(file, "%d", &i);
  22.         fclose(file);
  23.         file = fopen(FAIL_PATH, "w");
  24.         i++;
  25.         fprintf(file, "%d\n", i);
  26.         fclose(file);
  27. }

  28. void reset_init(void) {
  29.         FILE *file;
  30.         int val = 0;
  31.         if (existFile(FAIL_PATH)) {
  32.                 file = fopen(FAIL_PATH, "r");
  33.         } else {
  34.                 file = fopen(FAIL_PATH, "w+");
  35.         }
  36.         fscanf(file, "%d", &val);
  37.         fclose(file);
  38.         printf("%d\n", val);
  39. /*************** 出错开始 *************/
  40.         if ( val != 0 ) {
  41.                 file = fopen(FAIL_PATH, "w");
  42.                 fprintf(file, "%d", 0);
  43.         }
  44. /************ 出错结束 ***************/
  45.         fclose(file);
  46. }

  47. static int existFile(const char * PATH) {
  48.     // include <unistd.h>
  49.     // F_OK:test for existence of file
  50.     int access_result = access(PATH, F_OK);
  51.     if (access_result == -1) {
  52.         return 0;
  53.     } else {
  54.         return 1;
  55.     }
  56. }
复制代码
在  if ( val != 0 ) 的地方出现错误如下
  1. root@debian7:/tmp# ./a.out
  2. 0
  3. *** glibc detected *** ./a.out: double free or corruption (top): 0x0000000001640010 ***
  4. ======= Backtrace: =========
  5. /lib/x86_64-linux-gnu/libc.so.6(+0x75be6)[0x7fcaff61cbe6]
  6. /lib/x86_64-linux-gnu/libc.so.6(cfree+0x6c)[0x7fcaff62198c]
  7. /lib/x86_64-linux-gnu/libc.so.6(fclose+0x14d)[0x7fcaff60db3d]
  8. ./a.out[0x4007f0]
  9. ./a.out[0x4006a5]
  10. /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd)[0x7fcaff5c5ead]
  11. ./a.out[0x4005b9]
  12. ======= Memory map: ========
  13. 00400000-00401000 r-xp 00000000 08:01 1478893                            /tmp/a.out
  14. 00600000-00601000 rw-p 00000000 08:01 1478893                            /tmp/a.out
  15. 01640000-01661000 rw-p 00000000 00:00 0                                  [heap]
  16. 7fcaf8000000-7fcaf8021000 rw-p 00000000 00:00 0
  17. 7fcaf8021000-7fcafc000000 ---p 00000000 00:00 0
  18. 7fcaff391000-7fcaff3a6000 r-xp 00000000 08:01 786436                     /lib/x86_64-linux-gnu/libgcc_s.so.1
  19. 7fcaff3a6000-7fcaff5a6000 ---p 00015000 08:01 786436                     /lib/x86_64-linux-gnu/libgcc_s.so.1
  20. 7fcaff5a6000-7fcaff5a7000 rw-p 00015000 08:01 786436                     /lib/x86_64-linux-gnu/libgcc_s.so.1
  21. 7fcaff5a7000-7fcaff728000 r-xp 00000000 08:01 786443                     /lib/x86_64-linux-gnu/libc-2.13.so
  22. 7fcaff728000-7fcaff928000 ---p 00181000 08:01 786443                     /lib/x86_64-linux-gnu/libc-2.13.so
  23. 7fcaff928000-7fcaff92c000 r--p 00181000 08:01 786443                     /lib/x86_64-linux-gnu/libc-2.13.so
  24. 7fcaff92c000-7fcaff92d000 rw-p 00185000 08:01 786443                     /lib/x86_64-linux-gnu/libc-2.13.so
  25. 7fcaff92d000-7fcaff932000 rw-p 00000000 00:00 0
  26. 7fcaff932000-7fcaff952000 r-xp 00000000 08:01 786455                     /lib/x86_64-linux-gnu/ld-2.13.so
  27. 7fcaffb40000-7fcaffb43000 rw-p 00000000 00:00 0
  28. 7fcaffb4e000-7fcaffb51000 rw-p 00000000 00:00 0
  29. 7fcaffb51000-7fcaffb52000 r--p 0001f000 08:01 786455                     /lib/x86_64-linux-gnu/ld-2.13.so
  30. 7fcaffb52000-7fcaffb53000 rw-p 00020000 08:01 786455                     /lib/x86_64-linux-gnu/ld-2.13.so
  31. 7fcaffb53000-7fcaffb54000 rw-p 00000000 00:00 0
  32. 7ffc99636000-7ffc99657000 rw-p 00000000 00:00 0                          [stack]
  33. 7ffc997ae000-7ffc997af000 r-xp 00000000 00:00 0                          [vdso]
  34. ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
  35. Aborted
  36. root@debian7:/tmp#
复制代码

论坛徽章:
4
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:56:11IT运维版块每日发帖之星
日期:2016-08-11 06:20:00IT运维版块每日发帖之星
日期:2016-08-15 06:20:00
2 [报告]
发表于 2015-12-07 09:04 |只看该作者

/*************** 出错开始 *************/
        if ( val != 0 ) {
                file = fopen(FAIL_PATH, "w");
                fprintf(file, "%d", 0);
        }
/************ 出错结束 ***************/
        fclose(file);

fclose(file);

最后一个语句fclose(file);放错位置了

论坛徽章:
0
3 [报告]
发表于 2015-12-07 09:38 |只看该作者
回复 2# happy_fish100


    唉  ,真为自己的智商捉急啊 。。。
    原来这个错误就是 , 找不到要关闭的文件流。

论坛徽章:
224
2022北京冬奥会纪念版徽章
日期:2015-08-10 16:30:32操作系统版块每日发帖之星
日期:2016-02-18 06:20:00操作系统版块每日发帖之星
日期:2016-03-01 06:20:00操作系统版块每日发帖之星
日期:2016-03-02 06:20:0015-16赛季CBA联赛之上海
日期:2019-09-20 12:29:3219周年集字徽章-周
日期:2019-10-01 20:47:4815-16赛季CBA联赛之八一
日期:2020-10-23 18:30:5320周年集字徽章-20	
日期:2020-10-28 14:14:2615-16赛季CBA联赛之广夏
日期:2023-02-25 16:26:26CU十四周年纪念徽章
日期:2023-04-13 12:23:1015-16赛季CBA联赛之四川
日期:2023-07-25 16:53:45操作系统版块每日发帖之星
日期:2016-05-10 19:22:58
4 [报告]
发表于 2015-12-07 23:10 |只看该作者
好牛哦,直接看汇编代码了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP