Streams: Return early from `wp_is_stream()` for paths that aren't streams.
Some versions of PHP appear to have a memory leak that is occasionally triggered by calling `stream_get_wrappers()`. In order to avoid calling this, we can return early from `wp_is_stream()` when `$path` doesn't contain `://`. Props pbiron, JPry, dontstealmyfish. Fixes #44532. Built from https://develop.svn.wordpress.org/trunk@43466 git-svn-id: http://core.svn.wordpress.org/trunk@43293 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0e5e77a895
commit
46fa15291f
|
@ -5553,6 +5553,11 @@ function _device_can_upload() {
|
|||
* @return bool True if the path is a stream URL.
|
||||
*/
|
||||
function wp_is_stream( $path ) {
|
||||
if ( false === strpos( $path, '://' ) ) {
|
||||
// $path isn't a stream
|
||||
return false;
|
||||
}
|
||||
|
||||
$wrappers = stream_get_wrappers();
|
||||
$wrappers = array_map( 'preg_quote', $wrappers );
|
||||
$wrappers_re = '(' . join( '|', $wrappers ) . ')';
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43465';
|
||||
$wp_version = '5.0-alpha-43466';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue