]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net/iucv: Free memory obtained by kzalloc
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Tue, 13 Mar 2018 15:50:06 +0000 (16:50 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 23 May 2018 01:33:54 +0000 (21:33 -0400)
[ Upstream commit fa6a91e9b907231d2e38ea5ed89c537b3525df3d ]

Free memory by calling put_device(), if afiucv_iucv_init is not
successful.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Ursula Braun <ursula.braun@de.ibm.com>
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
net/iucv/af_iucv.c

index 123f6f9f854c6d922bb4e4579037f79a357c8334..8f9493b1bb1f2d098a97758058860054b47b648c 100644 (file)
@@ -2382,9 +2382,11 @@ static int afiucv_iucv_init(void)
        af_iucv_dev->driver = &af_iucv_driver;
        err = device_register(af_iucv_dev);
        if (err)
-               goto out_driver;
+               goto out_iucv_dev;
        return 0;
 
+out_iucv_dev:
+       put_device(af_iucv_dev);
 out_driver:
        driver_unregister(&af_iucv_driver);
 out_iucv: