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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Tue Mar 19 02:01:28 2024 UTC