bugs.php.net

PHP :: Bug #31024 :: using fgetcsv() crashes apache

  • ️Wed Dec 08 2004
Bug #31024 using fgetcsv() crashes apache
Submitted: 2004-12-08 20:27 UTC Modified: 2004-12-08 22:15 UTC
From: pbcomm at optonline dot net Assigned:
Status: Closed Package: Apache2 related
PHP Version: 4.3.9 OS: WinXP SP2
Private report: No CVE-ID: None

 [2004-12-08 20:27 UTC] pbcomm at optonline dot net

Description:
------------
Crashes Apache 2.0.52
Reproduce code:
---------------
?
$master_file = 'kva.csv';
$m_handle = fopen($master_file, 'r');
$row = 0;
while ($data = fgetcsv($m_handle, -1, ',', '"')) {
var_dump($data);
$row++;
        }
        fclose($m_handle);
        unset($data);
?>
Expected result:
----------------
array(6) { [0]=>  string(26) "category_fieldlist: "name"" [1]=>  string(25) "templatefile_categorymain" [2]=>  string(24) "templatefile_categorysub" [3]=>  string(5) "image" [4]=>  string(11) "description" [5]=>  string(16) "show_button_back" }
Actual result:
--------------
Apache HTTP Server has encountered a problem and needs to close.  We are sorry for the inconvenience.
szAppName : Apache.exe     szAppVer : 2.0.52.0     szModName : php4ts.dll     
szModVer : 4.3.9.9     offset : 000c1ecf

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports

 [2004-12-08 21:36 UTC] derick@php.net

Provide a link to the CVS file in question please.

 [2004-12-08 22:15 UTC] iliaa@php.net

This bug has been fixed in CVS.
Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
Thank you for the report, and for helping us make PHP better.