cours/content/secu_logicielle/td7-analyse_statique_dynamique/files/q5/test-overrun.c
2023-05-09 21:57:14 +02:00

10 lines
116 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
char *c = malloc(10);
c[10] = 1;
free(c);
return 0;
}