From 915e9a555eb59fcb51018ad9a556996ef52492c9 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 16 May 2004 15:43:30 +0000 Subject: [PATCH] - Fix #1329, closedir on exit (kameshj at fastmail dot fm) --- pear/PEAR/Command.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pear/PEAR/Command.php b/pear/PEAR/Command.php index 518bd12eba..49bb72b24c 100644 --- a/pear/PEAR/Command.php +++ b/pear/PEAR/Command.php @@ -280,6 +280,7 @@ class PEAR_Command $GLOBALS['_PEAR_Command_shortcuts'][$shortcut] = $command; } } + @closedir($dp); return true; } -- 2.50.1