lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 24 Aug 2007 19:05:20 +0900 From: Masahide NAKAMURA <nakam@...ux-ipv6.org> To: tgraf@...g.ch, davem@...emloft.net Cc: netdev@...r.kernel.org, Masahide NAKAMURA <nakam@...ux-ipv6.org> Subject: [PATCH] [XFRM] : Fix pointer copy size for encap_tmpl and coaddr. This is minor fix about sizeof argument using with kmemdup(). Signed-off-by: Masahide NAKAMURA <nakam@...ux-ipv6.org> --- net/xfrm/xfrm_user.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 0b8491f..46076f5 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c @@ -299,14 +299,14 @@ static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p, if (attrs[XFRMA_ENCAP]) { x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]), - sizeof(x->encap), GFP_KERNEL); + sizeof(*x->encap), GFP_KERNEL); if (x->encap == NULL) goto error; } if (attrs[XFRMA_COADDR]) { x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]), - sizeof(x->coaddr), GFP_KERNEL); + sizeof(*x->coaddr), GFP_KERNEL); if (x->coaddr == NULL) goto error; } -- 1.4.4.2 - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists