]> granicus.if.org Git - php/commitdiff
Fix test
authorStanislav Malyshev <stas@php.net>
Tue, 13 Sep 2016 03:12:41 +0000 (20:12 -0700)
committerStanislav Malyshev <stas@php.net>
Tue, 13 Sep 2016 04:04:23 +0000 (21:04 -0700)
ext/spl/tests/bug70068.phpt

index 92a38dfbd6923be0f50a8a26a473ec1b23d4970f..96b2fa808f899836c14f0f710ca2fd60b7a795d5 100644 (file)
@@ -2,8 +2,13 @@
 Bug #70068 (Dangling pointer in the unserialization of ArrayObject items)
 --FILE--
 <?php
+try {
 $a = unserialize('a:3:{i:0;C:11:"ArrayObject":20:{x:i:0;r:3;;m:a:0:{};}i:1;d:11;i:2;S:31:"AAAAAAAABBBBCCCC\01\00\00\00\04\00\00\00\00\00\00\00\00\00\00";}');
+} catch(Exception $e) {
+       print $e->getMessage()."\n";
+}
 ?>
 OK
 --EXPECT--
+Error at offset 10 of 20 bytes
 OK
\ No newline at end of file