php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35430 PDO crashes apache on incorrect FETCH_FUNC use.
Submitted: 2005-11-27 21:26 UTC Modified: 2005-11-27 22:01 UTC
From: stochnagara at hotmail dot com Assigned:
Status: Closed Package: PDO related
PHP Version: 5.1.0 OS: windows xp
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: stochnagara at hotmail dot com
New email:
PHP Version: OS:

 

 [2005-11-27 21:26 UTC] stochnagara at hotmail dot com
Description:
------------
When PDO::FETCH_FUNC is used without passing the function name as additional argument, Apache crashes.

Reproduce code:
---------------
<?
$pdo = new PDO("sqlite::memory:");
$pdo->query ("CREATE TABLE test (a integer primary key)");
$pdo->query ("select a from test")->fetchAll(PDO::FETCH_FUNC);


Expected result:
----------------
no error

Actual result:
--------------
Apache crashes.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-11-27 22:01 UTC] tony2001@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 12:01:29 2024 UTC