[PHP-DEV] PHP 4.0 Bug #7784: Crush Dump with OCIExecute From: vvtk <email protected>
Date: 11/13/00

From: vvtk <email protected>
Operating system: RedHat6.2
PHP version: 4.0.3pl1
PHP Bug Type: Oracle related
Bug description: Crush Dump with OCIExecute

$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.

-- 
Edit Bug report at: http://bugs.php.net/?id=7784&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>