Scheduled maintenance: Some features related to account registration and licensing may be temporarily unavailable from Friday (May 8) at 1 PM to Sunday (May 10) at 5 PM (PST).
HomeDefectsLIN1024-20179
Acknowledged

LIN1024-20179 : Security Advisory - linux - CVE-2026-31626

Created: Apr 27, 2026    Updated: Apr 30, 2026
Found In Version: 10.24.33.2
Severity: Standard
Applicable for: Wind River Linux LTS 24
Component/s: Kernel

Description

In the Linux kernel, the following vulnerability has been resolved:  staging: rtl8723bs: initialize le_tmp64 in rtw_BIP_verify()  Initialize le_tmp64 to zero in rtw_BIP_verify() to prevent using uninitialized data.  Smatch warns that only 6 bytes are copied to this 8-byte (u64) variable, leaving the last two bytes uninitialized:  drivers/staging/rtl8723bs/core/rtw_security.c:1308 rtw_BIP_verify() warn: not copying enough bytes for '&le_tmp64' (8 vs 6 bytes)  Initializing the variable at the start of the function fixes this warning and ensures predictable behavior.