aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/cipso_ipv4.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/cipso_ipv4.c')
-rw-r--r--net/ipv4/cipso_ipv4.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/ipv4/cipso_ipv4.c b/net/ipv4/cipso_ipv4.c
index 4bcec7f77251..e52799047a5f 100644
--- a/net/ipv4/cipso_ipv4.c
+++ b/net/ipv4/cipso_ipv4.c
@@ -2062,9 +2062,10 @@ int cipso_v4_skbuff_setattr(struct sk_buff *skb,
2062 u32 opt_len; 2062 u32 opt_len;
2063 int len_delta; 2063 int len_delta;
2064 2064
2065 buf_len = cipso_v4_genopt(buf, buf_len, doi_def, secattr); 2065 ret_val = cipso_v4_genopt(buf, buf_len, doi_def, secattr);
2066 if (buf_len < 0) 2066 if (ret_val < 0)
2067 return buf_len; 2067 return ret_val;
2068 buf_len = ret_val;
2068 opt_len = (buf_len + 3) & ~3; 2069 opt_len = (buf_len + 3) & ~3;
2069 2070
2070 /* we overwrite any existing options to ensure that we have enough 2071 /* we overwrite any existing options to ensure that we have enough