From c7090b50472c2054cb26c45462798f6d5131f967 Mon Sep 17 00:00:00 2001 From: Patrick Caulfield Date: Wed, 17 May 2006 07:34:09 +0000 Subject: [PATCH] Close ld.so.conf file descriptor when finished with it. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1027 fd59a12c-fef9-0310-b244-a6a79926bd2f --- lcr/lcr_ifact.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lcr/lcr_ifact.c b/lcr/lcr_ifact.c index c47d1d4f..196334fb 100644 --- a/lcr/lcr_ifact.c +++ b/lcr/lcr_ifact.c @@ -254,6 +254,7 @@ static int ldso_path_build (char *path, char *filename) } path_list[path_list_entries++] = strdup (string); } + fclose(fp); return (0); }