ID:               26968
 Updated by:       [EMAIL PROTECTED]
 Reported By:      voev at hotmail dot com
-Status:           Assigned
+Status:           Closed
 Bug Type:         InterBase related
 Operating System: RedHat 7.2
 PHP Version:      4CVS-2004-01-20
 Assigned To:      abies
 New Comment:

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.




Previous Comments:
------------------------------------------------------------------------

[2004-01-20 06:43:32] [EMAIL PROTECTED]

It appears that libgds.so uses atexit() to register a call to
gds__cleanup() at process shutdown. As the library is unloaded before
the process shuts down, the pointer to gds__cleanup() has become
invalid at that time and causes a segfault. 

I'm currently looking for a way to fix this. Any suggestions are highly
appreciated.


------------------------------------------------------------------------

[2004-01-19 14:32:41] voev at hotmail dot com

Description:
------------
My Firebird (SS) or Interbase server chrash very often when I test it
with php.
If work with Kylix cgi page I haven't sql server problems.

When start php from console and run any php that connect to
InterBase/Firebird  the last row is 
"Segmentation fault" always.

I've tested it with php 4.3.4, php 4.3.5 RC2, Firebird SS 1.03 and
Interbase 7.1 as well.

Php is ./configure --with-interbase=shared,/opt/interbase --with-apxs
--enable-track-vars --enable-debug


Reproduce code:
---------------
<? $dbh =
ibase_connect('localhost:/opt/interbase/examples/employee.gdb',
'SYSDBA', 'masterkey');
 $stmt = 'SELECT * FROM COUNTRY';
 $sth = ibase_query($dbh,$stmt);?>
<html>
<head>
</head>
<body>
<table>
<?php  while ($row = ibase_fetch_object($sth)) { ?>
  <tr><td><? echo $row->COUNTRY;?></td></tr> 
<?}
ibase_free_result($sth);
ibase_close($dbh);?>
</table></body></html>



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=26968&edit=1

Reply via email to