]> andersk Git - splint.git/blame - test/simplebufferConstraintTests/test3.c
Fixed handling of wide character strings (L"test").
[splint.git] / test / simplebufferConstraintTests / test3.c
CommitLineData
41320549 1
2void t()
3{
4 char g [100];
5 char j [23];
6 j[22] = 'd'; /*safe */
7 g[0] = 'd'; /* safe */
8 g[67] = 'f;'; /* safe */
9 g[101] = 'g'; /* unsafe */
10 g[100] = 'f'; /* unsafe */
11}
This page took 0.181786 seconds and 5 git commands to generate.