- djm@cvs.openbsd.org 2010/12/04 13:31:37

[hostfile.c]
     fix fd leak; spotted and ok dtucker
This commit is contained in:
Darren Tucker 2010-12-05 09:03:31 +11:00
parent af1f909254
commit 094f1e9934
2 changed files with 5 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}