From f1afcc896e7f8be3a6419681fd8cdee1d600a3aa Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 10 Jun 2009 13:52:58 +0200 Subject: 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 --- iptables-restore.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'iptables-restore.c') diff --git a/iptables-restore.c b/iptables-restore.c index 2a797ccf..5108fda6 100644 --- a/iptables-restore.c +++ b/iptables-restore.c @@ -459,5 +459,7 @@ main(int argc, char *argv[]) exit(1); } + if (in != NULL) + fclose(in); return 0; } -- cgit v1.2.3