summaryrefslogtreecommitdiffstats
path: root/hostfile.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-12-05 09:03:31 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-12-05 09:03:31 +1100
commit094f1e99348bdcea46f62f5c0f0e9944ed698b4e (patch)
tree07ca9b09abc61cd74683646a2d513e00887c8db1 /hostfile.c
parentaf1f90925494deba97a4b877798cf250f7dc75cf (diff)
- djm@cvs.openbsd.org 2010/12/04 13:31:37
[hostfile.c] fix fd leak; spotted and ok dtucker
Diffstat (limited to 'hostfile.c')
-rw-r--r--hostfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hostfile.c b/hostfile.c
index 9145529c..b6f924b2 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hostfile.c,v 1.49 2010/11/29 23:45:51 djm Exp $ */
+/* $OpenBSD: hostfile.c,v 1.50 2010/12/04 13:31:37 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -317,6 +317,7 @@ load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path)
num_loaded++;
}
debug3("%s: loaded %lu keys", __func__, num_loaded);
+ fclose(f);
return;
}