In the Linux kernel, the following vulnerability has been...
Moderate severity
Unreviewed
Published
Jul 25, 2025
to the GitHub Advisory Database
•
Updated Dec 15, 2025
Description
Published by the National Vulnerability Database
Jul 25, 2025
Published to the GitHub Advisory Database
Jul 25, 2025
Last updated
Dec 15, 2025
In the Linux kernel, the following vulnerability has been resolved:
btrfs: fix iteration of extrefs during log replay
At __inode_add_ref() when processing extrefs, if we jump into the next
label we have an undefined value of victim_name.len, since we haven't
initialized it before we did the goto. This results in an invalid memory
access in the next iteration of the loop since victim_name.len was not
initialized to the length of the name of the current extref.
Fix this by initializing victim_name.len with the current extref's name
length.
References