Files
ftmemsim-valgrind/exp-omega/tests/overwrite1.c
Julian Seward 5b02b70476 Add Bryan Meredith's Omega tool as an experimental tool. Maintainer
is Rich Coe.  Also, a minor mod to Makefile.install.am to handle tool
names with dashes in.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7112
2007-11-09 12:30:36 +00:00

12 lines
178 B
C

#include <stdlib.h>
int main(int argc, char *argv[])
{
char *pointer = 0;
pointer = malloc(64); /* Line 7 */
pointer = 0; /* Leak report Line 8 */
return 0;
}