aboutsummaryrefslogtreecommitdiff
path: root/slides/2018-software-security/sample/bad-printf.c
blob: 7026600cfef130cedbd40daa38400f88d7955476 (plain)
1
2
3
4
char b[4];
fgets(b, 4, stdin);
printf(b);
...