summaryrefslogtreecommitdiffstats
path: root/iptables-xml.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-06-10 13:52:58 +0200
committerJan Engelhardt <jengelh@medozas.de>2009-06-10 20:29:59 +0200
commitf1afcc896e7f8be3a6419681fd8cdee1d600a3aa (patch)
tree98b0d09be16f3e552251c4f28cb7efc6447c8e51 /iptables-xml.c
parenta3726818e07d47136010f09762637a3e597329e3 (diff)
iptables: close open file descriptors
Just for correctness, close some file descriptors that were opened. (E.g. ip6tables-save reading from procfs files.) Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'iptables-xml.c')
-rw-r--r--iptables-xml.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/iptables-xml.c b/iptables-xml.c
index e5d19419..daf42084 100644
--- a/iptables-xml.c
+++ b/iptables-xml.c
@@ -870,6 +870,8 @@ main(int argc, char *argv[])
exit(1);
}
+ if (in != NULL)
+ fclose(in);
printf("</iptables-rules>\n");
free_argv();