Skip to content
Snippets Groups Projects
Commit b53cf458 authored by Kumar Amit Mehta's avatar Kumar Amit Mehta Committed by John W. Linville
Browse files

net: wireless: hostap: hostap_ap.c: Return -ENOMEM instead of -1 for if kmalloc() fails.


When memory allocation using, kmalloc() fails, report appropriate error value.

Signed-off-by: default avatarKumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 488ec878
No related merge requests found
......@@ -376,7 +376,7 @@ int ap_control_add_mac(struct mac_restrictions *mac_restrictions, u8 *mac)
entry = kmalloc(sizeof(struct mac_entry), GFP_KERNEL);
if (entry == NULL)
return -1;
return -ENOMEM;
memcpy(entry->addr, mac, ETH_ALEN);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment