cppcheck/samples/resourceLeak/bad.c

11 lines
116 B
C

#include <stdio.h>
int main()
{
FILE *a = fopen("good.c", "r");
if (!a)
return 0;
return 0;
}