summaryrefslogtreecommitdiff
path: root/test/use-after-free.c
blob: 4338ed54135645ee06bacc733239d2a63070a5b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "mapalloc.h"

int main(void)
{
	const char buf[] = "THIS IS A CONSTANT STRING";

	char *ptr = map_malloc(sizeof(buf));
	memcpy(ptr, buf, sizeof(buf));
	printf("%p: %s\n", ptr, ptr);

	map_free(ptr);
	printf("freed\n");
	printf("%p: %s\n", ptr, ptr);
}