mirror of https://gitee.com/openkylin/linux.git
s390/pkey: fix memory leak within _copy_apqns_from_user()
Fixes: f2bbc96e7c
("s390/pkey: add CCA AES cipher key support")
Reported-by: Markus Elfring <Markus.Elfring@web.de>
Reported-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
parent
4ff4ba153a
commit
f9cac4fd88
|
@ -740,8 +740,10 @@ static void *_copy_apqns_from_user(void __user *uapqns, size_t nr_apqns)
|
|||
kapqns = kmalloc(nbytes, GFP_KERNEL);
|
||||
if (!kapqns)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
if (copy_from_user(kapqns, uapqns, nbytes))
|
||||
if (copy_from_user(kapqns, uapqns, nbytes)) {
|
||||
kfree(kapqns);
|
||||
return ERR_PTR(-EFAULT);
|
||||
}
|
||||
}
|
||||
|
||||
return kapqns;
|
||||
|
|
Loading…
Reference in New Issue