php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35614 extends crashes apache with Segmentation fault
Submitted: 2005-12-09 14:44 UTC Modified: 2005-12-09 14:55 UTC
From: spam at gemal dot dk Assigned:
Status: Not a bug Package: Apache related
PHP Version: 5.1.1 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: spam at gemal dot dk
New email:
PHP Version: OS:

 

 [2005-12-09 14:44 UTC] spam at gemal dot dk
Description:
------------
the following code produces Segmentation fault on php

<?php
class gpic {
	function __construct() {
		$conf = new gpicConfig();
		print "test";
	}
}

class gpicConfig extends gpic {
}
?>

PHP 5.0.5 (cli) (built: Oct 31 2005 10:51:24)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.5, Copyright (c) 1998-2004 Zend Technologies
    with Zend Extension Manager v1.0.9, Copyright (c) 2003-2005, by Zend Technologies
    with Zend Optimizer v2.6.0, Copyright (c) 1998-2005, by Zend Technologies
    with Zend Debugger v5.0.0, Copyright (c) 1999-2005, by Zend Technologies

Reproduce code:
---------------
<?php
class gpic {
	function __construct() {
		$conf = new gpicConfig();
		print "test";
	}
}

class gpicConfig extends gpic {
}
?>



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-12-09 14:55 UTC] tony2001@php.net
Do not file bugs when you have Zend extensions (zend_extension=)
loaded. Examples are Zend Optimizer, Zend Debugger, Turck MM Cache,
APC, Xdebug and ionCube loader.  These extensions often modify engine
behavior which is not related to PHP itself.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Apr 28 15:01:31 2024 UTC