- 论坛徽章:
- 0
|
Welcome to AIX Version 5.3! *
* *
* *
* Please see the README file in /usr/lpp/bos for information pertinent to *
* this release of the AIX Operating System.
vi test.c
"test.c" 16 lines, 229 characters
#include<stdlib.h>
void leak()
{
int* p = (int*)malloc(10*sizeof(int));
p[10] = 'a';
}
int main(int argc,char* argv[])
{
printf("begin to leak \n");
leak();
printf("leak a lot \n");
return 0;
}
valgrind-3.4.1
valgrind --tool=memcheck ./a.out
==7729550== Memcheck, a memory error detector.
==7729550== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al.
==7729550== Using LibVEX rev 1884, a library for dynamic binary translation.
==7729550== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP.
==7729550== Using valgrind-3.4.1, a dynamic binary instrumentation framework.
==7729550== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al.
==7729550== For more details, rerun with: -v
==7729550==
begin to leak
==7729550== Invalid write of size 4
==7729550== at 0x100004D4: leak (in /proc/7729550/object/a.out)
==7729550== by 0x1000052F: main (in /proc/7729550/object/a.out)
==7729550== Address 0x216a4050 is 0 bytes after a block of size 40 alloc'd
==7729550== at 0xDD1ED5B0: malloc (vg_replace_malloc.c:207)
==7729550== by 0x100004BB: leak (in /proc/7729550/object/a.out)
==7729550== by 0x1000052F: main (in /proc/7729550/object/a.out)
leak a lot
==7729550==
==7729550== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
==7729550== malloc/free: in use at exit: 40 bytes in 1 blocks.
==7729550== malloc/free: 1 allocs, 0 frees, 40 bytes allocated.
==7729550== For counts of detected errors, rerun with: -v
==7729550== searching for pointers to 1 not-freed blocks.
==7729550== checked 9,012,008 bytes.
==7729550==
==7729550== LEAK SUMMARY:
==7729550== definitely lost: 0 bytes in 0 blocks.
==7729550== possibly lost: 0 bytes in 0 blocks.
==7729550== still reachable: 40 bytes in 1 blocks.
==7729550== suppressed: 0 bytes in 0 blocks.
==7729550== Rerun with --leak-check=full to see details of leaked memory. |
|