Instituto Nacional de ciberseguridad. Sección Incibe
Instituto Nacional de Ciberseguridad. Sección INCIBE-CERT

CVE-2026-64041

Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
19/07/2026
Última modificación:
20/07/2026

Descripción

*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ASoC: codecs: fs210x: fix possible buffer overflow<br /> <br /> In fs210x_effect_scene_info(), a string was copied like this:<br /> <br /> strscpy(DST, SRC, strlen(SRC) + 1);<br /> <br /> A buffer overflow would happen if strlen(SRC) &gt;= sizeof(DST).<br /> Actually, strscpy() must be used this way:<br /> <br /> strscpy(DST, SRC, sizeof(DST));<br /> strscpy(DST, SRC); // defaults to sizeof(DST)