Check os_snprintf() result more consistently - more checks
Add more os_snprintf() result validation checks. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
1d39977136
commit
aaadd72733
3 changed files with 10 additions and 1 deletions
|
@ -1120,6 +1120,8 @@ int ap_sta_flags_txt(u32 flags, char *buf, size_t buflen)
|
|||
(flags & WLAN_STA_VHT ? "[VHT]" : ""),
|
||||
(flags & WLAN_STA_WNM_SLEEP_MODE ?
|
||||
"[WNM_SLEEP_MODE]" : ""));
|
||||
if (os_snprintf_error(buflen, res))
|
||||
res = -1;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue