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

9 lines
89 B
C

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