mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
Merge branch 'PHP-7.2' into PHP-7.3
This commit is contained in:
@@ -29,6 +29,10 @@ PHP NEWS
|
||||
- phpdbg:
|
||||
. Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel)
|
||||
|
||||
- Standard:
|
||||
. Fixed bug #77552 (Unintialized php_stream_statbuf in stat functions).
|
||||
(John Stevenson)
|
||||
|
||||
07 Feb 2019, PHP 7.3.2
|
||||
|
||||
- Core:
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
--TEST--
|
||||
Bug #77552 Unintialized php_stream_statbuf in stat functions
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (substr(PHP_OS, 0, 3) != 'WIN') {
|
||||
die('skip windows only test');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
// Check lstat on a Windows junction to ensure that st_mode is zero
|
||||
$tmpDir = __DIR__.'/test-bug77552';
|
||||
|
||||
$target = $tmpDir.'/folder/target';
|
||||
mkdir($target, 0777, true);
|
||||
|
||||
$junction = $tmpDir.'/junction';
|
||||
$cmd = sprintf('mklink /J "%s" "%s"', $junction, $target);
|
||||
exec($cmd);
|
||||
|
||||
$stat = lstat($junction);
|
||||
var_dump($stat['mode']);
|
||||
|
||||
?>
|
||||
--CLEAN--
|
||||
<?php
|
||||
$tmpDir = __DIR__.'/test-bug77552';
|
||||
$cmd = sprintf('rmdir /S /Q "%s"', $tmpDir);
|
||||
exec($cmd);
|
||||
?>
|
||||
--EXPECT--
|
||||
int(0)
|
||||
@@ -1884,6 +1884,8 @@ PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf
|
||||
const char *path_to_open = path;
|
||||
int ret;
|
||||
|
||||
memset(ssb, 0, sizeof(*ssb));
|
||||
|
||||
if (!(flags & PHP_STREAM_URL_STAT_NOCACHE)) {
|
||||
/* Try to hit the cache first */
|
||||
if (flags & PHP_STREAM_URL_STAT_LINK) {
|
||||
|
||||
Reference in New Issue
Block a user