summaryrefslogtreecommitdiff
path: root/ext/wddx/tests/bug75055.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wddx/tests/bug75055.phpt')
-rw-r--r--ext/wddx/tests/bug75055.phpt20
1 files changed, 20 insertions, 0 deletions
diff --git a/ext/wddx/tests/bug75055.phpt b/ext/wddx/tests/bug75055.phpt
new file mode 100644
index 0000000000..2956284d22
--- /dev/null
+++ b/ext/wddx/tests/bug75055.phpt
@@ -0,0 +1,20 @@
+--TEST--
+Bug #75055 Out-Of-Bounds Read in timelib_meridian()
+--SKIPIF--
+<?php if (!extension_loaded("wddx")) print "skip"; ?>
+--FILE--
+<?php
+
+$file_str = dirname(__FILE__) . "/bug75055.wddx";
+
+$wddx_str = file_get_contents($file_str);
+print strlen($wddx_str) . " bytes read.\n";
+
+var_dump(wddx_deserialize($wddx_str));
+?>
+--EXPECT--
+323 bytes read.
+array(1) {
+ ["aDateTime"]=>
+ string(12) "frONt of 0 0"
+}