php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41026 Zend Engine segfauls while invoking shutdown callbacks
Submitted: 2007-04-09 00:28 UTC Modified: 2007-04-09 07:30 UTC
From: vesselin at awcreator dot com Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 5.2.1 OS: Linux
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: vesselin at awcreator dot com
New email:
PHP Version: OS:

 

 [2007-04-09 00:28 UTC] vesselin at awcreator dot com
Description:
------------
When a callback that invokes a static class method is passed to register_shutdown_function(), the function incorrectly accepts it and after that zend engine segfaults when trying to invoke the callback.

Reproduce code:
---------------
<?php
class try_class
{
	static public function main ()
	{
		register_shutdown_function (array ("self", "on_shutdown"));
	}

	static public function on_shutdown ()
	{
		printf ("CHECKPOINT\n");
	}
}

try_class::main ();
?>


Expected result:
----------------
Some kind of error message

Actual result:
--------------
A segmentation fault.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-04-09 07:30 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 Dec 03 17:01:29 2024 UTC