Don't try calling lsl when file is missing.
[splint-patched.git] / test / mergenull.c
blob0026126cf8a8e7486efe043e95c77bda6e274594
1 /*
2 ** Added 2001-12-29
3 ** Test for branchstate bug reported by Jon Wilson
4 */
6 typedef /*@null@*/ struct s_foo *foo;
8 struct s_foo {
9 foo p;
10 } ;
12 void f (foo a)
14 while ( a != NULL ) {
15 foo temp = a->p ;
16 a->p = NULL ;
17 a = temp ;