Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.9.0

Bug #8559 PHP_CompatInfo fails to scan if it finds empty file in path
Submitted: 2006-08-25 14:32 UTC
From: glen at delfi dot ee Assigned: farell
Status: Closed Package: PHP_CompatInfo (version 1.2.0)
PHP Version: 5.1.4 OS: PLD Linux
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 41 - 23 = ?

 
 [2006-08-25 14:32 UTC] glen at delfi dot ee (Elan Ruusamäe)
Description: ------------ PHP_CompatInfo fails to scan if it finds empty file in path. besides it gives bogus error that it can't open directory. strace showed that it tries to mmap the found files, and mmap(2) returns EINVAL if one tries to mmap() 0 byte file. $ mkdir test $ cd test/ $ l total 0 $ > test.php $ php-compatinfo -d . Failed opening directory ("/tmp/test"). Please check your spelling and try again. Usage: Cli.php --dir=DIR [--no-recurse] | --file=FILE [--debug] | [--help] $ cat /usr/bin/php-compatinfo #!/usr/bin/php <?php /** * Get the Compatibility info from PHP CLI * * @version $Id: PHP_CompatInfo.php,v 1.1 2006/08/24 22:29:55 glen Exp $ * @author Davey Shafik <davey@php.net> * @package PHP_CompatInfo * @access public * @ignore */ ini_set('memory_limit', '24M'); require_once 'PHP/CompatInfo/Cli.php'; $cli = new PHP_CompatInfo_Cli(); $cli->run(); $

Comments

 [2006-08-27 15:14 UTC] farell (Laurent Laville)
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.