Commit 00af5c69 authored by roel kluin's avatar roel kluin Committed by Paul Moore

cipso: unsigned buf_len cannot be negative

unsigned buf_len cannot be negative
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarPaul Moore <paul.moore@hp.com>
parent e946217e
...@@ -2063,9 +2063,10 @@ int cipso_v4_skbuff_setattr(struct sk_buff *skb, ...@@ -2063,9 +2063,10 @@ int cipso_v4_skbuff_setattr(struct sk_buff *skb,
u32 opt_len; u32 opt_len;
int len_delta; int len_delta;
buf_len = cipso_v4_genopt(buf, buf_len, doi_def, secattr); ret_val = cipso_v4_genopt(buf, buf_len, doi_def, secattr);
if (buf_len < 0) if (ret_val < 0)
return buf_len; return ret_val;
buf_len = ret_val;
opt_len = (buf_len + 3) & ~3; opt_len = (buf_len + 3) & ~3;
/* we overwrite any existing options to ensure that we have enough /* we overwrite any existing options to ensure that we have enough
......
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