mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-04-07 03:37:32 +07:00
14 lines
387 B
C
14 lines
387 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
void *p1 = malloc(0x10);
|
|
fprintf(stderr, "1st malloc(0x10): %p\n", p1);
|
|
fprintf(stderr, "Freeing the first one\n");
|
|
free(p1);
|
|
fprintf(stderr, "Freeing the first one again\n");
|
|
free(p1);
|
|
fprintf(stderr, "2nd malloc(0x10): %p\n", malloc(0x10));
|
|
fprintf(stderr, "3rd malloc(0x10): %p\n", malloc(0x10));
|
|
}
|