Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b700a98c authored by Sergio Luis's avatar Sergio Luis Committed by David S. Miller
Browse files

libertas: free sk_buff with kfree_skb



free sk_buff with kfree_skb, instead of kree
 
Signed-off-by: default avatarSergio Luis <sergio@larces.uece.br>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cbfd24a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ static int process_rxed_802_11_packet(struct lbs_private *priv,
		lbs_deb_rx("rx err: frame received with bad length\n");
		priv->stats.rx_length_errors++;
		ret = -EINVAL;
		kfree(skb);
		kfree_skb(skb);
		goto done;
	}