mac80211: freeing the wrong variable
The intent was to free "msp->ratelist" here. "msp->sample_table" is always NULL at this point. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
68e8f2fae0
commit
7e988014cd
1 changed files with 1 additions and 1 deletions
|
@ -748,7 +748,7 @@ minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
|
||||||
return msp;
|
return msp;
|
||||||
|
|
||||||
error1:
|
error1:
|
||||||
kfree(msp->sample_table);
|
kfree(msp->ratelist);
|
||||||
error:
|
error:
|
||||||
kfree(msp);
|
kfree(msp);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue