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
View Add Comment Developer Edit
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:
16 - 8 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Fri Apr 19 05:01:29 2024 UTC