summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug33491.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/bug33491.phpt')
-rw-r--r--ext/mysqli/tests/bug33491.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/mysqli/tests/bug33491.phpt b/ext/mysqli/tests/bug33491.phpt
deleted file mode 100644
index fb25c8ec63..0000000000
--- a/ext/mysqli/tests/bug33491.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---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
- }
-}
-
-// Segfault when using the DB class which extends mysqli
-$DB = new DB('localhost', 'root', '', '');
-$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