Commit 0e8e57e3 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] From: James Morris <jmorris@redhat.com>

This patch removes a harmless duplicate assignment from the IPv6 code.
parent 5e752b7e
......@@ -2711,7 +2711,7 @@ static int selinux_parse_skb_ipv4(struct sk_buff *skb, struct avc_audit_data *ad
static int selinux_parse_skb_ipv6(struct sk_buff *skb, struct avc_audit_data *ad)
{
u8 nexthdr;
int ret, offset = skb->nh.raw - skb->data;
int ret, offset;
struct ipv6hdr ipv6h;
offset = skb->nh.raw - skb->data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment