php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: pbcomm at optonline dot net
New email:
PHP Version: OS:

 

 [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 21:40 UTC] pbcomm at optonline dot net
Here is the file in question:
http://max.roolz.org/kva.csv
 [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.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 15:01:30 2024 UTC