From 0ff0c8250add421fbc03eff89c1e4b9fef53c940 Mon Sep 17 00:00:00 2001 From: ligc Date: Fri, 5 Feb 2010 02:49:38 +0000 Subject: [PATCH] fix for bug 2945898: close(BNDFILE) not necessary, the bndfile is not opened git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5156 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/InstUtils.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/perl-xCAT/xCAT/InstUtils.pm b/perl-xCAT/xCAT/InstUtils.pm index 6b592fcbc..e964d0c1a 100644 --- a/perl-xCAT/xCAT/InstUtils.pm +++ b/perl-xCAT/xCAT/InstUtils.pm @@ -413,7 +413,6 @@ sub readBNDfile next if ($line =~ /^\s*$/ || $line =~ /^\s*#/); push(@pkglist, $line); } - close(BNDFILE); return (0, \@pkglist, $bnd_file_name); }