- djm@cvs.openbsd.org 2010/12/04 13:31:37
     [hostfile.c]
     fix fd leak; spotted and ok dtucker
diff --git a/ChangeLog b/ChangeLog
index 4e60f13..fb23d52 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,9 @@
      behaviour of creating a symlink is available using its "-s" option
      or through the preexisting "symlink" command; based on a patch from
      miklos AT szeredi.hu in bz#1555; ok markus@
+   - djm@cvs.openbsd.org 2010/12/04 13:31:37
+     [hostfile.c]
+     fix fd leak; spotted and ok dtucker
 
 20101204
  - (djm) [openbsd-compat/bindresvport.c] Use arc4random_uniform(range)
diff --git a/hostfile.c b/hostfile.c
index 9145529..b6f924b 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 @@
 		num_loaded++;
 	}
 	debug3("%s: loaded %lu keys", __func__, num_loaded);
+	fclose(f);
 	return;
 }