1--TEST--
2parse_str() should not read uninitialized memory when checking for $this
3--FILE--
4<?php
5
6function test() {
7    // strlen("abcd") == 4 is relevant
8    parse_str('abcd=1', $array);
9    var_dump($array);
10}
11
12test();
13
14?>
15--EXPECT--
16array(1) {
17  ["abcd"]=>
18  string(1) "1"
19}
20