Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236302
b: refs/heads/master
c: 9603ff5
h: refs/heads/master
v: v3
  • Loading branch information
Xiaochen Wang authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent ed22154 commit afd93ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0875abf83df7d74bf9858c125e82835bd1ca349c
refs/heads/master: 9603ff50b5d56e6ee64b10116ff640320732f9c8
5 changes: 3 additions & 2 deletions trunk/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1564,8 +1564,9 @@ static inline u16 auth_parse(struct sk_buff *skb, u8** challenge, int *chlen)

if(*(t++) == MFIE_TYPE_CHALLENGE){
*chlen = *(t++);
*challenge = kmalloc(*chlen, GFP_ATOMIC);
memcpy(*challenge, t, *chlen);
*challenge = kmemdup(t, *chlen, GFP_ATOMIC);
if (!*challenge)
return -ENOMEM;
}
}

Expand Down

0 comments on commit afd93ae

Please sign in to comment.