php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32828 Throwing exception in output_callback function with ob_start and ob_end_clean
Submitted: 2005-04-26 00:52 UTC Modified: 2005-04-28 16:21 UTC
From: rbro at hotmail dot com Assigned:
Status: Closed Package: Reproducible crash
PHP Version: 5.0,5.1 CVS (2005-04-26) OS: *
Private report: No CVE-ID: None
 [2005-04-26 00:52 UTC] rbro at hotmail dot com
Description:
------------
If you throw an exception inside an output_callback function as a result of using ob_start() and ob_end_clean(), a Segmentation fault occurs.


Reproduce code:
---------------
<?php
function output_handler($buffer)
{
	throw new Exception;
}

ob_start('output_handler');

ob_end_clean();
?>


Expected result:
----------------
Exception is thrown.


Actual result:
--------------
Segmentation fault


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-04-28 16:21 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: Fri Apr 19 01:01:28 2024 UTC