Open kisbogdan-kolos opened 11 months ago
Fleak does not detect file leak when not all opened files are closed in a function.
void fun() { FILE *a = fopen(...); FILE *b = fopen(...); /* ... */ fclose(a); /* b not closed, but fleak doesn't detect. */ }
Fleak does not detect file leak when not all opened files are closed in a function.