aboutsummaryrefslogtreecommitdiff
path: root/slides/2018-software-security/sample/bad-index2.c
blob: b9f5be65dd38ad54e9051be6fcd19498744407d0 (plain)
1
2
3
4
char b[4] = "abc";
b[4] = 'd';
printf("b: %s\n", s);
...