From 899608b6bede4c428c4576a9f4dcc9ce69a8385a Mon Sep 17 00:00:00 2001 From: Adam Silverstein Date: Fri, 26 Apr 2024 15:27:13 +0000 Subject: [PATCH] Media: fix potential error in class-avif-info.php::get_item_features(). Import upstream fix from libavifinfo, correcting a potential fatal error. Reviewed by jorbin. Merges [58049] to the 6.5 branch. Props yguyon. Fixes #60980. Built from https://develop.svn.wordpress.org/branches/6.5@58050 git-svn-id: http://core.svn.wordpress.org/branches/6.5@57515 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-avif-info.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-avif-info.php b/wp-includes/class-avif-info.php index 93280b3806..10fc1b68d1 100644 --- a/wp-includes/class-avif-info.php +++ b/wp-includes/class-avif-info.php @@ -175,7 +175,7 @@ class Features { if ( $tile->parent_item_id != $target_item_id ) { continue; } - $status = get_item_features( $tile->tile_item_id, $tile_depth + 1 ); + $status = $this->get_item_features( $tile->tile_item_id, $tile_depth + 1 ); if ( $status != NOT_FOUND ) { return $status; } diff --git a/wp-includes/version.php b/wp-includes/version.php index f9315ae60d..0b7357cfad 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5.3-alpha-58043'; +$wp_version = '6.5.3-alpha-58050'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.