mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 04:20:23 +09:00
s390/zcrypt: don't leak memory if dev_set_name() fails
[ Upstream commit6252f47b78] When dev_set_name() fails, zcdn_create() doesn't free the newly allocated resources. Do it. Fixes:00fab2350e("s390/zcrypt: multiple zcrypt device nodes support") Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20230831110000.24279-1-andriy.shevchenko@linux.intel.com Signed-off-by: Harald Freudenberger <freude@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
12de76fddd
commit
131cd74a8e
@@ -398,6 +398,7 @@ static int zcdn_create(const char *name)
|
||||
ZCRYPT_NAME "_%d", (int) MINOR(devt));
|
||||
nodename[sizeof(nodename)-1] = '\0';
|
||||
if (dev_set_name(&zcdndev->device, nodename)) {
|
||||
kfree(zcdndev);
|
||||
rc = -EINVAL;
|
||||
goto unlockout;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user