On Wed, 2021-07-14 at 13:36 +0800, Ryder Lee wrote: > > if (!elem || elem->datalen < 10 || > !(elem->data[10] & > WLAN_EXT_CAPA10_OBSS_NARROW_BW_RU_TOLERANCE_SUPPORT)) > data->tolerated = false; Unrelated to this patch, but that looks like an off-by-one? If datalen == 10, then you can only access data[0] through data[9], not data[10]? johannes