Skip to content
Snippets Groups Projects
Commit 7c13a0d9 authored by David S. Miller's avatar David S. Miller
Browse files
parents 369cf77a 22e091e5
No related branches found
No related tags found
No related merge requests found
...@@ -215,7 +215,7 @@ NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb, ...@@ -215,7 +215,7 @@ NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
int ret; int ret;
if (!cond || if (!cond ||
(ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN) == 1)) ((ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN)) == 1))
ret = okfn(skb); ret = okfn(skb);
return ret; return ret;
} }
......
...@@ -286,7 +286,7 @@ found: ...@@ -286,7 +286,7 @@ found:
/* Check for overlap with preceding fragment. */ /* Check for overlap with preceding fragment. */
if (prev && if (prev &&
(NFCT_FRAG6_CB(prev)->offset + prev->len) - offset > 0) (NFCT_FRAG6_CB(prev)->offset + prev->len) > offset)
goto discard_fq; goto discard_fq;
/* Look for overlap with succeeding segment. */ /* Look for overlap with succeeding segment. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment