]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
xfrm: use correct size to initialise sp->ovec
authorLi RongQing <lirongqing@baidu.com>
Sun, 7 Oct 2018 02:22:42 +0000 (10:22 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 24 Nov 2019 07:23:18 +0000 (08:23 +0100)
[ Upstream commit f1193e915748291fb205a908db33bd3debece6e2 ]

This place should want to initialize array, not a element,
so it should be sizeof(array) instead of sizeof(element)

but now this array only has one element, so no error in
this condition that XFRM_MAX_OFFLOAD_DEPTH is 1

Signed-off-by: Li RongQing <lirongqing@baidu.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/xfrm/xfrm_input.c

index 06dec32503bd66b18478e19c75255e348daaea58..fc0a9ce1be18fab468756279a6f6ab7780868641 100644 (file)
@@ -130,7 +130,7 @@ struct sec_path *secpath_dup(struct sec_path *src)
        sp->len = 0;
        sp->olen = 0;
 
-       memset(sp->ovec, 0, sizeof(sp->ovec[XFRM_MAX_OFFLOAD_DEPTH]));
+       memset(sp->ovec, 0, sizeof(sp->ovec));
 
        if (src) {
                int i;