You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/host/heap_jemalloc_extent_info.n...

17 lines
220 B
C

#include <stdlib.h>
#include <jemalloc/jemalloc.h>
void break_here(void) {}
char *ptr = NULL;
int main(void)
{
ptr = (char *)malloc(2 * sizeof(char));
ptr[0] = 'A';
ptr[1] = 'B';
break_here();
}