2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

fix resource leak in if_err_.c

This commit is contained in:
Helmut Grohne 2013-02-05 12:40:56 +01:00
parent bb7bf0bcd7
commit e2faabaff6

View File

@ -113,5 +113,6 @@ int if_err_(int argc, char **argv) {
fwrite(s, 1, i, stdout); fwrite(s, 1, i, stdout);
putchar('\n'); putchar('\n');
} }
fclose(f);
return 0; return 0;
} }