]> andersk Git - splint.git/blob - test/metastate/struct.c
Fixed loading of rc files, warnrc and showscan.
[splint.git] / test / metastate / struct.c
1 typedef struct
2 {
3   /*@only@*/ /*@open@*/ FILE *file; 
4 } *source;
5
6 void source_badClose (source s)
7 {
8   // free (s->file);
9   (void) fclose (s->file);
10 } /* error - scope exits with file closed */
This page took 0.221249 seconds and 5 git commands to generate.