NONE · 0

CVE-2026-89895

In the Linux kernel, the following vulnerability has been resolved: media: cobalt: Avoid freeing ALSA private data twice snd_cobalt_card_create() stores cobsc in sc->private_data and installs snd_co...

Vulnerability Description

In the Linux kernel, the following vulnerability has been resolved: media: cobalt: Avoid freeing ALSA private data twice snd_cobalt_card_create() stores cobsc in sc->private_data and installs snd_cobalt_card_private_free() as sc->private_free. From that point, snd_card_free(sc) releases cobsc through the ALSA card cleanup path. If cobalt_alsa_init() fails after snd_cobalt_card_create(), the err_exit_free path calls snd_card_free(sc) and then kfree(cobsc). That second free releases the same object again. Remove the explicit kfree(cobsc) and leave ownership with the ALSA card. This issue was found by a static analysis checker and confirmed by manual source review.

References

FAQ

What is CVE-2026-89895?

CVE-2026-89895 is a documented vulnerability. In the Linux kernel, the following vulnerability has been resolved: media: cobalt: Avoid freeing ALSA private data twice snd_cobalt_card_create() stores cobsc in sc->private_data and installs snd_co...

How severe is CVE-2026-89895?

CVSS scoring is not yet available for CVE-2026-89895. Check NVD for updates.

Is there a patch for CVE-2026-89895?

Check the references section above for vendor advisories and patch information. Review vendor security bulletins for remediation guidance.