ID: 34450
Updated by: [EMAIL PROTECTED]
Reported By: etnu at etnu dot org
-Status: Open
+Status: Verified
Bug Type: MySQLi related
Operating System: *
PHP Version: 5CVS-2005-09-10 (snap)
Previous Comments:
------------------------------------------------------------------------
[2005-09-10 03:46:58] etnu at etnu dot org
Description:
------------
I'm getting a seg fault when calling mysqli::close() from a derived
object in the destructor.
This happens in PHP 5.0.5 (stable), 5.1.0RC1, and all latest snaps, but
it does NOT happen in 5.0.4.
Current workaround:
Leave connections open; dunno if this is a major issue or not as
connections are supposed to get closed when the script terminates
anyway.
Reproduce code:
---------------
<?php
class Data extends mysqli
{
public function __construct($Host,$User,$Pass,$DB)
{
parent::__construct($Host,$User,$Pass,$DB);
}
public function __destruct()
{
// parent::close(); causes the segfault as well.
$this->close();
}
}
$DB = new Data('192.168.50.3','web','[EMAIL PROTECTED]','hermes');
?>
Expected result:
----------------
Not seg faulting.
Actual result:
--------------
Segmentation faults.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34450&edit=1