Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249083
b: refs/heads/master
c: 60d5c9f
h: refs/heads/master
i:
  249081: 7786f2c
  249079: 7e23ca6
v: v3
  • Loading branch information
Julia Lawall authored and Greg Kroah-Hartman committed Apr 20, 2011
1 parent 6952e4a commit 4b7d764
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 29811f9d8973e65b46da4283d52f02f78a21f6e0
refs/heads/master: 60d5c9f5b6a2f5ce09712b7f7d0b0bf979a150be
4 changes: 3 additions & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/wl_iw.c
Original file line number Diff line number Diff line change
Expand Up @@ -3672,8 +3672,10 @@ int wl_iw_attach(struct net_device *dev, void *dhdp)
return -ENOMEM;

iscan->iscan_ex_params_p = kmalloc(params_size, GFP_KERNEL);
if (!iscan->iscan_ex_params_p)
if (!iscan->iscan_ex_params_p) {
kfree(iscan);
return -ENOMEM;
}
iscan->iscan_ex_param_size = params_size;
iscan->sysioc_tsk = NULL;

Expand Down

0 comments on commit 4b7d764

Please sign in to comment.