diff options
author | Ilya Lesokhin <ilyal@mellanox.com> | 2017-11-13 11:22:44 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-11-14 10:26:34 +0300 |
commit | 61ef6da622aa7b66bf92991bd272490eea6c712e (patch) | |
tree | ee84189e00cb00da682483070b9db7e7051d933f /net | |
parent | 0a87bc2e58a687fe14817b9c7f73e68570ba33c6 (diff) | |
download | linux-61ef6da622aa7b66bf92991bd272490eea6c712e.tar.xz |
tls: Use kzalloc for aead_request allocation
Use kzalloc for aead_request allocation as
we don't set all the bits in the request.
Fixes: 3c4d7559159b ('tls: kernel TLS support')
Signed-off-by: Ilya Lesokhin <ilyal@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/tls/tls_sw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c index 7d80040a37b6..f00383a37622 100644 --- a/net/tls/tls_sw.c +++ b/net/tls/tls_sw.c @@ -219,7 +219,7 @@ static int tls_do_encryption(struct tls_context *tls_ctx, struct aead_request *aead_req; int rc; - aead_req = kmalloc(req_size, flags); + aead_req = kzalloc(req_size, flags); if (!aead_req) return -ENOMEM; |