Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10270
b: refs/heads/master
c: f3cb4cc
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Roskin authored and Jeff Garzik committed Sep 23, 2005
1 parent 53fba24 commit c7a5514
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 4c08202547111e503eca4031ae9443159a79e2b2
refs/heads/master: f3cb4cc120177090b0ccc9fb20a12010de39ac8a
6 changes: 4 additions & 2 deletions trunk/drivers/net/wireless/orinoco.c
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ static void orinoco_join_ap(struct net_device *dev)
return;

if (orinoco_lock(priv, &flags) != 0)
goto out;
goto fail_lock;

/* Sanity checks in case user changed something in the meantime */
if (! priv->bssid_fixed)
Expand Down Expand Up @@ -1091,8 +1091,10 @@ static void orinoco_join_ap(struct net_device *dev)
printk(KERN_ERR "%s: Error issuing join request\n", dev->name);

out:
kfree(buf);
orinoco_unlock(priv, &flags);

fail_lock:
kfree(buf);
}

/* Send new BSSID to userspace */
Expand Down

0 comments on commit c7a5514

Please sign in to comment.