summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug33491.phpt
blob: 067e489aae4bb7352032f407a35b86e6a6535c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #33491 (extended mysqli class crashes when result is not object)
--INI--
error_reporting=4095
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

class DB extends mysqli
{
  public function query_single($query) {
    $result = parent::query($query);
    $result->fetch_row(); // <- Here be crash
  }
}

require_once dirname(__FILE__)."/connect.inc";

// Segfault when using the DB class which extends mysqli
$DB = new DB($host, $user, $passwd, '');
$DB->query_single('SELECT DATE()');

?>
--EXPECTF--
Fatal error: Call to a member function fetch_row() on a non-object in %sbug33491.php on line %d