projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68e8f2f
)
mac80211: freeing the wrong variable
author
Dan Carpenter
<error27@gmail.com>
Thu, 22 Jul 2010 11:14:19 +0000
(13:14 +0200)
committer
John W. Linville
<linville@tuxdriver.com>
Mon, 26 Jul 2010 19:32:41 +0000
(15:32 -0400)
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>
net/mac80211/rc80211_minstrel_ht.c
patch
|
blob
|
history
diff --git
a/net/mac80211/rc80211_minstrel_ht.c
b/net/mac80211/rc80211_minstrel_ht.c
index a16694bb634b01ea4401ba24db5d99a6c35c26dd..c5b465904e3bfcec2ac0199e64dda46072022330 100644
(file)
--- a/
net/mac80211/rc80211_minstrel_ht.c
+++ b/
net/mac80211/rc80211_minstrel_ht.c
@@
-748,7
+748,7
@@
minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
return msp;
error1:
- kfree(msp->
sample_table
);
+ kfree(msp->
ratelist
);
error:
kfree(msp);
return NULL;