cppcheck/samples/resourceLeak/bad.c

10 lines
115 B
C

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