Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108380
b: refs/heads/master
c: 3672387
h: refs/heads/master
v: v3
  • Loading branch information
Jamal Hadi Salim authored and David S. Miller committed Aug 13, 2008
1 parent 9b456ea commit 3730687
Show file tree
Hide file tree
Showing 2 changed files with 3 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: f97017cdefefdb6a0e19266024b0c6f9fd411eeb
refs/heads/master: 36723873b664fb6b5cfe06d291df948126e43f50
4 changes: 2 additions & 2 deletions trunk/net/sched/act_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ static int tca_action_flush(struct nlattr *nla, struct nlmsghdr *n, u32 pid)
struct nlattr *tb[TCA_ACT_MAX+1];
struct nlattr *kind;
struct tc_action *a = create_a(0);
int err = -EINVAL;
int err = -ENOMEM;

if (a == NULL) {
printk("tca_action_flush: couldnt create tc_action\n");
Expand All @@ -762,7 +762,7 @@ static int tca_action_flush(struct nlattr *nla, struct nlmsghdr *n, u32 pid)
if (!skb) {
printk("tca_action_flush: failed skb alloc\n");
kfree(a);
return -ENOBUFS;
return err;
}

b = skb_tail_pointer(skb);
Expand Down

0 comments on commit 3730687

Please sign in to comment.