1--TEST--
2Bug MOPB-29 (wrong length calculation for S)
3--INI--
4error_reporting=0
5--FILE--
6<?php
7$str = 'S:'.(100*3).':"'.str_repeat('\61', 100).'"';
8$arr = array(str_repeat('"', 200)."1"=>1,str_repeat('"', 200)."2"=>1);
9
10$data = unserialize($str);
11var_dump($data);
12
13--EXPECT--
14bool(false)
15