In the Linux kernel, the following vulnerability has been resolved:
ALSA: control: Validate buflen before strnlen() in sndctleleminitenumnames()
sndctleleminitenumnames() advances pointer p through the names buffer while decrementing buflen. If buf_len reaches zero but items remain, the next iteration calls strnlen(p, 0).
While strnlen(p, 0) returns 0 and would hit the existing namelen == 0 error path, CONFIGFORTIFY_SOURCE's fortified strnlen() first checks maxlen against _builtindynamicobjectsize(). When Clang loses track of p's object size inside the loop, this triggers a BRK exception panic before the return value is examined.
Add a buf_len == 0 guard at the loop entry to prevent calling fortified strnlen() on an exhausted buffer.
Found by kernel fuzz testing through Xiaomi Smartphone.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/46xxx/CVE-2026-46088.json",
"cna_assigner": "Linux"
}