summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/bug_52944.phpt
blob: e63dde2d293692c1a323a476032d442fb1d238a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #52944 (segfault with zlib filter and corrupted data)
--SKIPIF--
<?php if (!extension_loaded("zlib")) print "skip"; ?>
--INI--
allow_url_fopen=1
--FILE--
<?php
/* NOTE this test can fail on asm builds of zlib 1.2.5 or
   1.2.7 on at least Windows and Darwin. Using unoptimized
   zlib build fixes the issue. */

require __DIR__ . "/bug_52944_corrupted_data.inc";

$fp = fopen('data://text/plain;base64,' . $data, 'r');
stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_READ);
var_dump(fread($fp,1));
var_dump(fread($fp,1));
fclose($fp);
echo "Done.\n";
?>
--EXPECTF--
Notice: fread(): zlib: data error in %s on line %d
bool(false)
string(0) ""
Done.