autofs: don't fail to free_dev_ioctl(param)
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Sat, 10 Sep 2016 10:34:24 +0000 (20:34 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Sat, 10 Sep 2016 10:34:24 +0000 (20:34 +1000)
Returning -ENOTTY here fails to free dynamically allocated param.

Link: http://lkml.kernel.org/r/20160812024815.12352.69153.stgit@pluto.themaw.net
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Signed-off-by: Ian Kent <ikent@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/autofs4/dev-ioctl.c

index c7fcc743884374cf695f530036701610d78d79a7..d47b35a669e10daf261125a706c77dd28323ee74 100644 (file)
@@ -662,7 +662,8 @@ static int _autofs_dev_ioctl(unsigned int command,
        fn = lookup_dev_ioctl(cmd);
        if (!fn) {
                pr_warn("unknown command 0x%08x\n", command);
-               return -ENOTTY;
+               err = -ENOTTY;
+               goto out;
        }
 
        fp = NULL;
This page took 0.025967 seconds and 5 git commands to generate.