|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-04-21 05:39 UTC] grantc@php.net
  [2006-04-28 15:03 UTC] grantc@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 08:00:01 2025 UTC | 
Description: ------------ Segmentation Fault in Apache on two different systems when calling ingres_error(). [notice] child pid 6320 exit signal Segmentation fault (11) Linux skylane.scitechsys.com 2.6.9-22.0.2.EL #1 Tue Jan 17 06:51:40 CST 2006 i686 athlon i386 GNU/Linux PHP Version 4.3.9 Apache/2.0.52 (CentOS) Ingres Extension Version 1.2.1 Revision $Revision: 1.67 $ Ingres version II 9.0.4 (int.lnx/103)NPTL Faulting application Apache.exe, version 2.0.55.0, faulting module php_ingres.dll, version 5.1.2.2, fault address 0x00005652. Windows NT LAPTOP-HOWERTON 5.1 build 2600 Apache/2.0.55 (Win32) PHP/5.1.2 Ingres Extension Version 1.3.0-dev Revision $Revision: 1.69 $ Ingres Version II 3.0.3 (int.w32/103) Reproduce code: --------------- <html> <head> </head> <body> <?php $link = ingres_connect("iidbdb", "ingres", "grabstein") or die("Connection to db failed"); $query = "SELECT table_name, table_owner FROM iitables ORDER BY table_owner, table_name"; echo "<p>" . $query . "</p>"; ingres_query($query, $link); echo "<table>"; while ($row = ingres_fetch_row()) { echo "<tr><td>" . $row[0] . "</td><td>" . $row[1] . "</td></tr>"; } echo "</table>"; echo ingres_error(); ingres_close(); ?> </body> Expected result: ---------------- No errors. Actual result: -------------- [notice] child pid 6320 exit signal Segmentation fault (11)