mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 04:34:11 +08:00
staging: rtl8188eu: remove unnecessary call to memset
call to memset to assign 0 value immediately after allocating memory with kzalloc is unnecesaary as kzalloc allocates the memory filled with 0 value. Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
30207d7b64
commit
2ad05de99f
@ -1566,7 +1566,6 @@ int rtw_set_auth(struct adapter *adapter, struct security_priv *psecuritypriv)
|
||||
res = _FAIL;
|
||||
goto exit;
|
||||
}
|
||||
memset(psetauthparm, 0, sizeof(struct setauth_parm));
|
||||
psetauthparm->mode = (unsigned char)psecuritypriv->dot11AuthAlgrthm;
|
||||
pcmd->cmdcode = _SetAuth_CMD_;
|
||||
pcmd->parmbuf = (unsigned char *)psetauthparm;
|
||||
@ -1601,8 +1600,6 @@ int rtw_set_key(struct adapter *adapter, struct security_priv *psecuritypriv, in
|
||||
goto err_free_cmd;
|
||||
}
|
||||
|
||||
memset(psetkeyparm, 0, sizeof(struct setkey_parm));
|
||||
|
||||
if (psecuritypriv->dot11AuthAlgrthm == dot11AuthAlgrthm_8021X) {
|
||||
psetkeyparm->algorithm = (unsigned char)psecuritypriv->dot118021XGrpPrivacy;
|
||||
RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
|
||||
|
@ -2166,8 +2166,6 @@ static int set_group_key(struct adapter *padapter, u8 *key, u8 alg, int keyid)
|
||||
goto exit;
|
||||
}
|
||||
|
||||
memset(psetkeyparm, 0, sizeof(struct setkey_parm));
|
||||
|
||||
psetkeyparm->keyid = (u8)keyid;
|
||||
|
||||
psetkeyparm->algorithm = alg;
|
||||
|
Loading…
Reference in New Issue
Block a user