From: Pierre Joye Date: Sun, 16 May 2004 15:43:30 +0000 (+0000) Subject: - Fix #1329, closedir on exit (kameshj at fastmail dot fm) X-Git-Tag: RELEASE_0_1~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=915e9a555eb59fcb51018ad9a556996ef52492c9;p=php - Fix #1329, closedir on exit (kameshj at fastmail dot fm) --- 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; }