|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-05-03 16:04 UTC] kalle@php.net
-Status: Open
+Status: Feedback
[2010-05-03 16:04 UTC] kalle@php.net
[2010-05-03 17:06 UTC] l dot iania at sintrade dot org
-Status: Feedback
+Status: Open
[2010-05-03 17:06 UTC] l dot iania at sintrade dot org
[2010-05-03 17:09 UTC] pajoye@php.net
-Status: Open
+Status: Bogus
[2010-05-03 17:09 UTC] pajoye@php.net
[2010-05-03 17:37 UTC] l dot iania at sintrade dot org
[2010-05-03 21:04 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ The bug appears everywhere using interbase extension, also running make test in the build directory, producing a core dump php.core. The valgrind output is: ==94843== Jump to the invalid address stated on the next line ==94843== at 0x1243810: ??? ==94843== by 0x375079: exit (in /lib/libc.so.7) ==94843== by 0x81FE1FE: main (in /usr/local/bin/php) ==94843== Address 0x1243810 is not stack'd, malloc'd or (recently) free'd Further more, running make test, the test #7 FAILS. Firebird installed from ports is: firebird-client-2.0.3_3 Firebird-2 database client firebird-server-2.0.3_3 Firebird-2 relational database (server) # php -v PHP 5.3.2 with Suhosin-Patch (cli) (built: May 3 2010 11:02:58) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies Test script: --------------- Every script involving interbase. i.e. <?php $user = 'SYSDBA'; $password = 'masterkey'; ini_set('ibase.default_user',$user); ini_set('ibase.default_password',$password); $dbname = '/tmp/example.fdb'; $res = ibase_connect($dbname) or die(ibase_errmsg()); ibase_close($res) or die(ibase_errmsg()); ?>