mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-29 08:14:02 -05:00
P2P: Fix snprintf buffer length for group ifname backup
Commit 2e5ba4b6d1
moved this to a function
and updated one of the os_snprintf() calls to use the len parameter, but
forgot the other one.
Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
fa56315cfc
commit
41c526f357
@ -1175,8 +1175,7 @@ static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
|
|||||||
if (os_strlen(ifname) >= IFNAMSIZ &&
|
if (os_strlen(ifname) >= IFNAMSIZ &&
|
||||||
os_strlen(wpa_s->ifname) < IFNAMSIZ) {
|
os_strlen(wpa_s->ifname) < IFNAMSIZ) {
|
||||||
/* Try to avoid going over the IFNAMSIZ length limit */
|
/* Try to avoid going over the IFNAMSIZ length limit */
|
||||||
os_snprintf(ifname, sizeof(ifname), "p2p-%d",
|
os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
|
||||||
wpa_s->p2p_group_idx);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user