summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug61961.phpt
blob: ff0279a367e6f58b78de0453db75e6c93b1d1e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #61961 (file_get_content leaks when access empty file with max length)
--FILE--
<?php
$tmp_empty_file = __FILE__ . ".tmp";
file_put_contents($tmp_empty_file, "");

var_dump(file_get_contents($tmp_empty_file, NULL, NULL, NULL, 10));
unlink($tmp_empty_file);
?>
==DONE==
--EXPECT--
string(0) ""
==DONE==