Skip to content

Commit

Permalink
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
Browse files Browse the repository at this point in the history
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
  [PKT_SCHED] ematch: Fix build warning.
  • Loading branch information
Linus Torvalds committed Feb 10, 2008
2 parents 58a14ee + 30ddb15 commit 7cf712d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sched/ematch.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ void tcf_em_tree_destroy(struct tcf_proto *tp, struct tcf_ematch_tree *tree)
if (em->ops->destroy)
em->ops->destroy(tp, em);
else if (!tcf_em_is_simple(em))
kfree(em->data);
kfree((void *) em->data);
module_put(em->ops->owner);
}
}
Expand Down

0 comments on commit 7cf712d

Please sign in to comment.