summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2017-07-21 18:17:33 +0800
committerXinchen Hui <laruence@gmail.com>2017-07-21 18:17:33 +0800
commit01090e6ced0d40544f2f5a5010c262023918e039 (patch)
treebc2be51c2677d0251d2e166eeff83b459e48d988 /ext/simplexml/tests
parent96ad72dc29cfa1bd6dad9a483adfa8dc5baefbb9 (diff)
parenta8f98fc7f7c795eb6585e71160655a3cc06a9300 (diff)
downloadphp-git-01090e6ced0d40544f2f5a5010c262023918e039.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Update NEWS Fixed bug #74950 (nullpointer deref in simplexml_element_getDocNamespaces)
Diffstat (limited to 'ext/simplexml/tests')
-rw-r--r--ext/simplexml/tests/bug74950.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/simplexml/tests/bug74950.phpt b/ext/simplexml/tests/bug74950.phpt
new file mode 100644
index 0000000000..f267a07a81
--- /dev/null
+++ b/ext/simplexml/tests/bug74950.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Bug #74950 (null pointer deref in zim_simplexml_element_getDocNamespaces)
+--SKIPIF--
+<?php
+if (!extension_loaded("simplexml")) die("skip SimpleXML not available");
+?>
+--FILE--
+<?php
+$xml=new SimpleXMLElement(0,9000000000);var_dump($xml->getDocNamespaces())?>
+?>
+--EXPECTF--
+Fatal error: Uncaught Exception: Invalid options in %sbug74950.php:%d
+Stack trace:
+#0 %sbug74950.php(%d): SimpleXMLElement->__construct('0', 9000000000)
+#1 {main}
+ thrown in %sbug74950.php on line %d