php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7784 Crush Dump with OCIExecute
Submitted: 2000-11-13 10:56 UTC Modified: 2006-07-17 08:33 UTC
From: vvtk at stealthcomp dot com Assigned:
Status: Closed Package: OCI8 related
PHP Version: 4.0.3pl1 OS: RedHat6.2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: vvtk at stealthcomp dot com
New email:
PHP Version: OS:

 

 [2000-11-13 10:56 UTC] vvtk at stealthcomp dot com
$query =
"select   sum(decode(NAME, 'consistent gets',VALUE, 0)),
         sum(decode(NAME, 'db block gets',VALUE, 0)),
         sum(decode(NAME, 'physical reads',VALUE, 0)),
         round((sum(decode(name, 'consistent gets',value, 0)) + 
            sum(decode(name, 'db block gets',value, 0)) - 
            sum(decode(name, 'physical reads',value, 0))) / 
         (sum(decode(name, 'consistent gets',value, 0)) + 
         sum(decode(name, 'db block gets',value, 0))) * 100,2) ".'from     sys.v_$sysstat';

$stmt = OCIParse($conn,$query);
OCIExecute($stmt);
$nrows = OCIFetchStatement($stmt,$results);

=======bt==========

Program received signal SIGSEGV, Segmentation fault.
0x40272fc8 in php_if_ocifetchstatement (ht=1162094669, return_value=0x45444f43, this_ptr=0x4d414e28, return_value_used=1126640709)
    at oci8.c:3492
3492$$RETURN_LONG(rows);
(gdb) bt
#0  0x40272fc8 in php_if_ocifetchstatement (ht=1162094669, return_value=0x45444f43, this_ptr=0x4d414e28, 
    return_value_used=1126640709) at oci8.c:3492
#1  0x5553282f in ?? ()
Cannot access memory at address 0x29292930.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-11-13 12:31 UTC] thies@php.net
fixed in CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Dec 27 08:01:28 2024 UTC