mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-15 14:10:43 +00:00
staging: vt6656: remove an unneeded NULL check
We dereference "param->u.wpa_key.key" on the next line so the check here is inconsistent. This is only called from iwctl_siwencodeext() and "param->u.wpa_key.key" is a valid pointer. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1c5ebaae42
commit
3b371fe4d2
@ -86,7 +86,7 @@ int wpa_set_keys(struct vnt_private *pDevice, void *ctx)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (param->u.wpa_key.key && param->u.wpa_key.key_len > sizeof(abyKey))
|
||||
if (param->u.wpa_key.key_len > sizeof(abyKey))
|
||||
return -EINVAL;
|
||||
|
||||
memcpy(&abyKey[0], param->u.wpa_key.key, param->u.wpa_key.key_len);
|
||||
|
Loading…
x
Reference in New Issue
Block a user