ID: 48409
Updated by: [email protected]
Reported By: nightstorm at tlen dot pl
Status: Open
Bug Type: Reproducible crash
Operating System: Arch Linux 64-bit
PHP Version: 5.2CVS-2009-05-27 (snap)
New Comment:
<?php
class ABCException extends Exception {}
class BBB
{
public function xyz($d, $x)
{
if ($x == 34) {
throw new ABCException;
}
return array('foo' => 'xyz');
}
}
class CCC
{
public function process($p)
{
return $p;
}
}
class AAA
{
public function func()
{
$b = new BBB;
$c = new CCC;
$i = 34;
$item = array('foo' => 'bar');
try {
$c->process($b->xyz($item['foo'], $i));
}
catch(ABCException $e) {
$b->xyz($item['foo'], $i);
}
} // end func();
}
class Runner
{
public function run($x)
{
try {
$x->func();
}
catch(ABCException $e) {
throw new Exception;
}
}
}
try {
$runner = new Runner;
$runner->run(new AAA);
}
catch(Exception $e) {
die('Exception thrown');
}
?>
Previous Comments:
------------------------------------------------------------------------
[2009-05-27 17:02:45] nightstorm at tlen dot pl
Description:
------------
This an extended version of the code I've sent for bug #48408 that also
crashes both PHP 5.2.9 and the latest snapshot of PHP 5.2 (with
different debug backtrace).
The same script crashes also the latest PHP 5.3-dev snapshot but
generates a different backtrace. The information about the environment:
- The script was run from PHP Command-Line Interface
- No extra patches or modifications were used (pure snapshot)
- No debugging symbols were used.
- Operating system: Arch Linux x86_64.
The problem may be related to http://bugs.php.net/bug.php?id=48408 as
the reproduce code is similar.
Reproduce code:
---------------
See:
http://media.zyxist.com/snippets/exception_segfault1.phps
Expected result:
----------------
"Exception thrown"
Actual result:
--------------
Core was generated by `/usr/local/php/bin/php
exception_segfault1.php'.
Program terminated with signal 11, Segmentation fault.
[New process 12255]
#0 zend_do_fcall_common_helper_SPEC (execute_data=0x7fff56fcab90) at
/usr/src/php-5.2-dev/Zend/zend_vm_execute.h:289
289 if (RETURN_VALUE_USED(ctor_opline)) {
(gdb) backtrace
#0 zend_do_fcall_common_helper_SPEC (execute_data=0x7fff56fcab90) at
/usr/src/php-5.2-dev/Zend/zend_vm_execute.h:289
#1 0x0000000000704cd4 in execute (op_array=0x7feb4ee45b90) at
/usr/src/php-5.2-dev/Zend/zend_vm_execute.h:92
#2 0x00000000006e2741 in zend_execute_scripts (type=8, retval=0x51,
file_count=3) at /usr/src/php-5.2-dev/Zend/zend.c:1134
#3 0x00000000006a020f in php_execute_script
(primary_file=0x7fff56fcd200) at /usr/src/php-5.2-dev/main/main.c:2025
#4 0x0000000000754afe in main (argc=2, argv=0x7fff56fcd3e8) at
/usr/src/php-5.2-dev/sapi/cli/php_cli.c:1162
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=48409&edit=1