summaryrefslogtreecommitdiff
path: root/net/mac802154
diff options
context:
space:
mode:
authorMartin Townsend <martin.townsend@xsilon.com>2014-08-19 17:03:28 (GMT)
committerMarcel Holtmann <marcel@holtmann.org>2014-08-19 17:17:41 (GMT)
commit7629d1eaf33672c9d35ba1e2ad12b459d56ca3b1 (patch)
tree44f968094f67e27b17e99fd7887891c1c1313e94 /net/mac802154
parent77b2f2865956b7573f9b040db7a9f808b434acd1 (diff)
downloadlinux-7629d1eaf33672c9d35ba1e2ad12b459d56ca3b1.tar.xz
mac802154: fixed potential skb leak with mac802154_parse_frame_start
This patch fix a memory leak if received frame was not able to parse. Signed-off-by: Martin Townsend <martin.townsend@xsilon.com> Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/wpan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac802154/wpan.c b/net/mac802154/wpan.c
index 3c3069f..4c13323 100644
--- a/net/mac802154/wpan.c
+++ b/net/mac802154/wpan.c
@@ -573,6 +573,7 @@ void mac802154_wpans_rx(struct mac802154_priv *priv, struct sk_buff *skb)
ret = mac802154_parse_frame_start(skb, &hdr);
if (ret) {
pr_debug("got invalid frame\n");
+ kfree_skb(skb);
return;
}