From 2ba89d65421cba255a0e75a7f646e4bbb2487193 Mon Sep 17 00:00:00 2001 From: Ben Myers Date: Fri, 12 Feb 2010 14:00:52 -0500 Subject: [PATCH] nfs-utils: dont leak fd in mountlist_list Don't leak this file descriptor if stat should fail. Signed-off-by: Steve Dickson --- utils/mountd/rmtab.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/mountd/rmtab.c b/utils/mountd/rmtab.c index b028529..19b22ee 100644 --- a/utils/mountd/rmtab.c +++ b/utils/mountd/rmtab.c @@ -24,6 +24,7 @@ #include "ha-callout.h" #include /* PATH_MAX */ +#include extern int reverse_resolve; @@ -187,7 +188,9 @@ mountlist_list(void) if ((lockid = xflock(_PATH_RMTABLCK, "r")) < 0) return NULL; if (stat(_PATH_RMTAB, &stb) < 0) { - xlog(L_ERROR, "can't stat %s", _PATH_RMTAB); + xlog(L_ERROR, "can't stat %s: %s", + _PATH_RMTAB, strerror(errno)); + xfunlock(lockid); return NULL; } if (stb.st_mtime != last_mtime) { -- 2.39.2